[JAVA] SWEA 5431 - 민석이의 과제 체크하기

hyng·2022년 2월 17일
0

SWEA

목록 보기
35/78

import java.util.*;
class Solution
{
	public static void main(String args[]) throws Exception
	{
		Scanner sc = new Scanner(System.in);
        StringBuffer sb = new StringBuffer();

        int T = sc.nextInt();
        for(int tc=1; tc<=T; tc++){
            sb.append("#").append(tc).append(" ");

            int N = sc.nextInt();
            boolean student[] = new boolean[N+1];

            int K = sc.nextInt();
            for(int i=0; i<K; i++){
                student[sc.nextInt()] = true;
            }

            for(int i=1; i<=N; i++){
                if(!student[i])
                    sb.append(i).append(" ");
            }
            sb.append("\n");

        }
        System.out.println(sb);

    }
}
profile
공부하고 알게 된 내용을 기록하는 블로그

0개의 댓글