add: swea/5431.py

This commit is contained in:
Gyubin Han
2024-05-17 14:58:27 +09:00
parent b4463aa8dd
commit 76d577029f

9
swea/5431.py Normal file
View File

@@ -0,0 +1,9 @@
t=int(input())
for tc in range(1,t+1):
n,k=map(int,input().split())
sm=set(map(int,input().split()))
nsm=[]
for i in range(1,n+1):
if not i in sm:
nsm.append(i)
print("#"+str(tc),*nsm)