https://www.acmicpc.net/problem/17219
백준 17219 '비밀번호 찾기' 문제입니다.
dictionary를 이용하면 쉽게 풀 수 있습니다.
import sys
input = sys.stdin.readline
n, m = map(int, input().split())
s = dict()
for _ in range(n):
site, password = input().split()
if site not in s.keys():
s[site] = password
for _ in range(m):
site = input().strip()
print(s[site])
'백준 알고리즘' 카테고리의 다른 글
파이썬) 백준 알고리즘 | 4358번 : 생태학 (0) | 2022.03.02 |
---|---|
파이썬) 백준 알고리즘 | 13414번 : 수강신청 (0) | 2022.03.02 |
파이썬) 백준 알고리즘 | 10816번 : 숫자 카드 2 (0) | 2022.03.01 |
파이썬) 백준 알고리즘 | 1302번 : 베스트셀러 (0) | 2022.03.01 |
파이썬) 백준 알고리즘 | 4949번 : 균형잡힌 세상 (0) | 2022.03.01 |
댓글