일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- englishbook
- 원서읽자
- 알고리즘 문제
- SQL
- 완전탐색
- 삼성
- nightroutine
- 코테 준비
- sw expert
- 백준
- 프로그래머스
- sw expert academy
- readingbook
- 알고리즘
- the midnight library
- 직무면접
- D4
- STUDYENGLISH
- BFS
- dfs
- MySQL
- PyQt
- 코테 대비
- 쉬운 알고리즘 문제
- swexpertacademy
- 코테
- English
- 원서
- 원서읽기
- 코딩테스트
- Today
- Total
목록코테 대비 (19)
시나브로
#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; 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_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..
#include int compare(const void *a, const void *b) // 오름차순 비교 함수 구현 { int p1 = *(int *)a; int p2 = *(int *)b; if (p1 p2) return 1; return 0; } int main() { int test_number = 0; scanf("%d\n", &test_number); for (int p = 0; p < test_number; p++) { int total_lesson_number = 0; int my_lessson_number = 0; int lessons[210] = { 0 }; scanf("%d %d", &total_lesson_number, &m..