반응형
문제
https://www.acmicpc.net/problem/17219
풀이
import sys
N, M = map(int, input().split())
passwd = {}
for i in range(N):
a = sys.stdin.readline().rstrip().split()
passwd[a[0]] = a[1]
for i in range(M):
a = sys.stdin.readline().rstrip()
print(passwd[a])
딕셔너리를 이용하면 쉽게 풀 수 있는 문제입니다.
반응형
'Programming > 알고리즘' 카테고리의 다른 글
[백준 / Python] 7576번 토마토 (1) | 2024.05.08 |
---|---|
[백준 / Python] 1015번 수열 정렬 (0) | 2024.03.28 |
[백준/Python] 9659번 돌 게임 5 (0) | 2024.02.22 |
[백준 / Python] 7569번 토마토 (3) | 2024.02.17 |
[백준 / Python] 1927번 최소 힙 (0) | 2024.02.13 |
댓글