Post
5431. 민석이의 과제 체크하기 (SWEA) | Gihun Son

5431. 민석이의 과제 체크하기 (SWEA)

※ SW Expert Academy의 문제를 무단 복제하는 것을 금지합니다.

출처:

SW Expert Academy

나의 풀이

1
2
3
4
5
6
7
8
9
10
T = int(input())
for test_case in range(1, T + 1):
    N,K=map(int,input().split())
    do_list=list(map(int,input().split()))
    do_list.sort()
    print(f'#{test_case} ',end='')
    for i in range(1,N+1):
        if i not in do_list:
            print(i,end=' ')
    print('')
This post is licensed under CC BY 4.0 by the author.