[백준] 17219. 비밀번호 찾기 - Python3
17219. 비밀번호 찾기
https://www.acmicpc.net/problem/17219
Dictionary - 성공
from sys import stdin
N, M = map(int, stdin.readline().split())
dic = {}
for i in range(N):
address, password = map(str, stdin.readline().split())
dic[address] = password
for i in range(M):
address = stdin.readline().strip()
print(dic[address])
파이썬의 딕셔너리를 이용해 풀었다
이 때, 주의해야할 점!
stdin.readline()
은 입력값의 개행문자까지 가져오기 때문에strip()
이 필요하다
ex) 입력값:acmicpc.net
/ 실제 받아오는 값:acmicpc.net\n
Author And Source
이 문제에 관하여([백준] 17219. 비밀번호 찾기 - Python3), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@jsh5408/백준-17219.-비밀번호-찾기-Python3저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)