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 |
Tags
- 코테
- STUDYENGLISH
- dfs
- 프로그래머스
- 백준
- 코테 대비
- D4
- sw expert
- MySQL
- 코딩테스트
- 원서
- the midnight library
- 직무면접
- 알고리즘
- readingbook
- swexpertacademy
- 원서읽자
- 코테 준비
- sw expert academy
- 원서읽기
- 완전탐색
- 삼성
- BFS
- 쉬운 알고리즘 문제
- PyQt
- englishbook
- English
- nightroutine
- SQL
- 알고리즘 문제
Archives
- Today
- Total
목록5431 (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