https://www.acmicpc.net/problem/1620
백준 1620 '나는야 포켓몬 마스터 이다솜' 문제입니다.
dictionary 자료형을 이용하면 쉽게 풀 수 있습니다.
dictionary에 저장해두고 원하는 포켓몬을 찾아주면 됩니다.
import sys
input = sys.stdin.readline
n, m = map(int, input().split())
s1 = dict()
s2 = dict()
for i in range(n):
name = input().strip()
s1[name] = i+1
s2[i+1] = name
for i in range(m):
question = input().strip()
try:
print(s2[int(question)])
except:
print(s1[question])
'백준 알고리즘' 카테고리의 다른 글
파이썬) 백준 알고리즘 | 2776번 : 암기왕 (0) | 2022.03.02 |
---|---|
파이썬) 백준 알고리즘 | 9375번 : 패션왕 신해빈 (0) | 2022.03.02 |
파이썬) 백준 알고리즘 | 11659번 : 구간 합 구하기 4 (0) | 2022.03.02 |
파이썬) 백준 알고리즘 | 4358번 : 생태학 (0) | 2022.03.02 |
파이썬) 백준 알고리즘 | 13414번 : 수강신청 (0) | 2022.03.02 |
댓글