일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- SQL
- MySQL
- PyQt
- the midnight library
- nightroutine
- 코테 대비
- 프로그래머스
- D4
- 완전탐색
- 코테
- BFS
- 알고리즘 문제
- 알고리즘
- 직무면접
- 쉬운 알고리즘 문제
- 원서읽자
- 백준
- englishbook
- sw expert
- readingbook
- 원서
- sw expert academy
- English
- STUDYENGLISH
- 원서읽기
- dfs
- 코테 준비
- swexpertacademy
- 코딩테스트
- 삼성
- Today
- Total
목록알고리즘 (77)
시나브로
#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..
#include #include #include #include #include using namespace std; int main(void) { int test_case = 0; scanf("%d", &test_case); for (int i = 0; i < test_case; i++) { char words[5][16] = { 0 }; for (int j = 0; j < 5; j++) { scanf("%s", &words[j]); } printf("#%d ", i + 1); for (int n = 0;n
#include #include #include #include #include using namespace std; int main(void) { int test_case = 0; scanf("%d", &test_case); for (int i = 0; i < test_case; i++) { int all_student = 0; int submit_student = 0; int submit[1000] = { 0 }; scanf("%d %d", &all_student, &submit_student); for (int j = 0; j < submit_student; j++) { int k = 0; scanf("%d", &k); submit[k - 1] = 1; } printf("#%d ", i + 1); ..
#include #include #include #include #include using namespace std; int main(void) { int test_number = 0; scanf("%d", &test_number); for (int q = 0; q < test_number; q++) { int tittle_number = 0; char buffer=0; char tittle[1000][1000] ; scanf("%d", &tittle_number); for (int w = 0; w < tittle_number; w++) { scanf("%s", tittle[w]); } int answer = 0; int aphabel = 65; for (;;aphabel++) { int break_si..