지나가던 개발자
[Python] 백준 17219번(비밀번호 찾기) 문제 풀이 본문
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로 제출해야만 풀린다.
'PS > Python' 카테고리의 다른 글
[Python] 백준 11047번(동전 0) 문제 풀이 (0) | 2023.03.09 |
---|---|
[Python] 백준 5585번(거스름돈) 문제 풀이 (0) | 2023.02.25 |
[Python] NYPC 2022 Round 1 인류의 적 모기 퇴치 문제 풀이 (0) | 2023.01.04 |
[Python] 백준 1411번(비슷한 단어) 문제 풀이 (0) | 2022.12.22 |
[Python] 백준 3986번(좋은 단어) 문제 풀이 (0) | 2022.12.12 |
Comments