지나가던 개발자

[Python] 백준 17219번(비밀번호 찾기) 문제 풀이 본문

PS/Python

[Python] 백준 17219번(비밀번호 찾기) 문제 풀이

KwonYongHyeon 2023. 1. 10. 19:50

 

import sys

n, m = map(int, sys.stdin.readline().split())
sites = []
pws = []
for x in range(n):
    siteAndPw = sys.stdin.readline().split()
    sites.append(siteAndPw[0])
    pws.append(siteAndPw[1])
for i in range(m):
    print(pws[sites.index(sys.stdin.readline().strip())])

 

시간 초과 문제 때문에 PyPy3로 제출해야만 풀린다.

Comments