BAEKJOON 17219 비밀번호 찾기

상훈·2022년 5월 5일
0

🏸문제


💊풀이

딕셔너리를 사용하여 속도를 빠르게 하자

  1. input을 띄어쓰기 기준으로 나눈다
  2. 앞 부분을 dictionary의 key, 뒷 부분을 dictionary의 value로 사용
  3. dictionary의 key를 사용하여 호출

📌코드

import sys
sys.stdin = open('input.txt')

N, M = map(int, input().split())

dic = {}
for _ in range(N):
    key, value = sys.stdin.readline().rstrip().split()  # input을 key 로 dictionary 생성
    dic[key] = value

for _ in range(M):
    print(dic[sys.stdin.readline().rstrip()])

🛀결과

이지!

profile
문송 개발자

0개의 댓글

관련 채용 정보