일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
- 원서읽자
- 코테
- 알고리즘
- PyQt
- D4
- 코테 대비
- 프로그래머스
- 알고리즘 문제
- STUDYENGLISH
- nightroutine
- 코테 준비
- sw expert
- 코딩테스트
- 원서읽기
- sw expert academy
- swexpertacademy
- BFS
- 완전탐색
- 직무면접
- 쉬운 알고리즘 문제
- the midnight library
- readingbook
- englishbook
- dfs
- SQL
- MySQL
- 백준
- English
- 삼성
- 원서
- Today
- Total
목록분류 전체보기 (172)
시나브로
#include int main() { int test_case = 0; scanf("%d", &test_case); for (int q = 0; q < test_case; q++) { int soil_length = 0; int add_money = 0; int money = 0; int soil[10000] = { 0 }; int paper_amount = 0; scanf("%d %d", &soil_length, &money); for (int i = 0; i < soil_length; i++) scanf("%d", &soil[i]); for (int i = 0; i < soil_length; i++) { add_money = 0; for (int j = i; j < soil_length; j++) ..
#include #include #include using namespace std; int graph[1020][1020] = { 0 }; int main(void) { int test_case = 0; scanf("%d", &test_case); for (int i = 0; i < test_case; i++) { int person_number = 0; scanf("%d", &person_number); for (int n = 0; n < person_number; n++) { for (int m = 0; m < person_number; m++) { scanf("%d", &graph[n][m]); if (graph[n][m] == 0) graph[n][m] = 100000; if (n == m) g..
#include #include #include using namespace std; int count_number[10000] = { 0 }; typedef struct same { char charater; char next_charater; char next_next_charater; char next_next_next_charater; int index; }same; int compare(const void *a, const void *b) // 오름차순 비교 함수 구현 { same p1 = *(same *)a; same p2 = *(same *)b; if (p1.charater p2.charater) retu..
#include #include #include #include #include using namespace std; int main(void) { int test_case = 0; char buffer = 0; scanf("%d", &test_case); scanf("%c", &buffer); for (int i = 0; i < test_case; i++) { char words[100010] = { 0 }; for (int j=0;;j++) { scanf("%c", &words[j]); if (words[j] == '\n') break; } char before = 0; int open = 0; int number = 0; for (int j = 0;; j++) { if (words[j] == '\n..