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
- 원서읽자
- D4
- 원서
- 코테
- BFS
- 알고리즘
- 삼성
- englishbook
- sw expert
- nightroutine
- STUDYENGLISH
- 직무면접
- English
- 프로그래머스
- dfs
- 쉬운 알고리즘 문제
- 원서읽기
- SQL
- 백준
- the midnight library
- PyQt
- MySQL
- readingbook
- 코테 대비
- sw expert academy
- 알고리즘 문제
- 완전탐색
- 코테 준비
- 코딩테스트
- swexpertacademy
Archives
- Today
- Total
목록민석이의 과제 체크하기 (1)
시나브로
[D3] 5431. 민석이의 과제 체크하기
#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); ..
알고리즘/SW Expert Academy
2019. 10. 6. 10:57