시나브로

[D3] 5431. 민석이의 과제 체크하기 본문

알고리즘/SW Expert Academy

[D3] 5431. 민석이의 과제 체크하기

혬혬 2019. 10. 6. 10:57
728x90
#include <iostream>
#include <string>
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
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);
		for (int j = 0; j < all_student; j++) {
			if (submit[j] == 0)
				printf("%d ", j + 1);
		}
		printf("\n");
	
	}
	return 0;
}
728x90
Comments