쏘ing
[Python] 백준 1764 듣보잡 본문
https://www.acmicpc.net/problem/1764
풀이
N, M = map(int, input().split())
dict = {}
res = []
# N만큼 dict에 넣기 이름:이름
for _ in range (N):
temp = input()
dict[temp] = temp
# dict에 있는 이름이라면 res에 넣기
for _ in range (M):
temp = input()
if temp in dict:
res.append(temp)
res.sort()
print(len(res))
for i in res:
print(i)
'알고리즘 > CLASS 3' 카테고리의 다른 글
[Python] 백준 11399 ATM (0) | 2022.02.21 |
---|---|
[Python] 백준 11279 최대 힙 (0) | 2022.02.21 |
[Python] 백준 17219 비밀번호 찾기 (0) | 2022.02.21 |
[Python] 백준 1620 나는야 포켓몬 마스터 이다솜 (0) | 2022.02.21 |
[Python] 백준 1676 팩토리얼 0의 개수 (0) | 2022.02.21 |
Comments