728x90
import sys
n, m = map(int, sys.stdin.readline().split())
hash = {}
for _ in range(n):
string = sys.stdin.readline().split()
if string[0] not in hash:
hash[string[0]] = string[1]
for _ in range(m):
site = sys.stdin.readline().rstrip()
print(hash[site])
728x90
'[Coding Test] > [백준]' 카테고리의 다른 글
[백준] 12100 파이썬(python) : 2048 (Easy) (0) | 2022.09.16 |
---|---|
[백준] 2776 파이썬(python) : 암기왕 (0) | 2022.09.15 |
[백준] 15686 파이썬(python) : 치킨 배달 (0) | 2022.09.13 |
[백준] 10819 파이썬(python) : 차이를 최대로 (0) | 2022.09.13 |
[백준] 2251 파이썬(python) : 물통 - (★) (0) | 2022.09.11 |