지나가던 개발자

[Python] NYPC 2023 Round 1 <메이플스토리 새로운 직업 고르기> 풀이 본문

PS/Python

[Python] NYPC 2023 Round 1 <메이플스토리 새로운 직업 고르기> 풀이

KwonYongHyeon 2023. 8. 16. 14:24

 

alljobs = set([input() for i in range(int(input()))])
alreadydid = set([input() for i in range(int(input()))])
print(len(alljobs-alreadydid))
[print(x) for x in list(alljobs-alreadydid)]
Comments