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