[백준/파이썬] 17219번

민정·2023년 3월 15일
0

[백준/파이썬]

목록 보기
123/245
post-thumbnail

백준 17219번

문제

https://www.acmicpc.net/problem/17219

코드

import sys
input = sys.stdin.readline

n, m = map(int, input().split())

dict = {}

for _ in range(n):
    site , pw = map(str, input().split())
    dict[site] = pw

for _ in range(m):
    search = input().rstrip()
    print(dict[search])        

풀이

딕셔너리를 이용해 문제를 풀었다.

profile
パㅔバ6ㅇr 덤벼ㄹΓ :-0

0개의 댓글