250x250
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- SQL
- 원서
- 알고리즘
- nightroutine
- 삼성
- 코테 대비
- englishbook
- 코딩테스트
- 완전탐색
- MySQL
- PyQt
- 원서읽자
- English
- readingbook
- STUDYENGLISH
- 알고리즘 문제
- sw expert
- 쉬운 알고리즘 문제
- 코테
- the midnight library
- D4
- 원서읽기
- 직무면접
- sw expert academy
- dfs
- 코테 준비
- swexpertacademy
- 백준
- 프로그래머스
- BFS
Archives
- Today
- Total
목록코테 (9)
시나브로
[D3] 6913. 동철이의 프로그래밍 대회
#include int compare(const void* first, const void* second) { if (*(int*)first > *(int*)second) return -1; else if (*(int*)first < *(int*)second) return 1; else return 0; } int main() { int test_number = 0; scanf("%d\n", &test_number); for (int p = 0; p < test_number; p++) { int person_number = 0; int problem_number = 0; int person[22] = { 0 }; scanf("%d %d", &person_number, &problem_number); fo..
알고리즘/SW Expert Academy
2019. 10. 6. 10:53