728x90
1. 문제
https://www.acmicpc.net/problem/17219
2. 접근
3. 문제풀이
import sys
n, m=map(int,input().split())
str={}
for i in range(n):
u,v=sys.stdin.readline().rstrip().split()
str[u]=v # 사이트와 링크를 key value로 딕셔너리에 저장
for i in range(m):
print(str[sys.stdin.readline().rstrip()])
728x90
'PS > BOJ' 카테고리의 다른 글
[Python] 백준 1912 : 연속합 (0) | 2022.06.20 |
---|---|
[Python] 백준 14425 : 문자열 집합 (0) | 2022.06.07 |
[C] 백준 11729 : 하노이 탑 이동 순서 (0) | 2022.05.29 |
[C] 백준 2447 : 별 찍기 - 10 (0) | 2022.05.29 |
[C] 백준 1550 : 16진수(feat.자료형) (0) | 2022.05.26 |