티스토리 뷰
What I Learned/Algorithm Practice
[백준 - python] 1620번: 나는야 포켓몬 마스터 이다솜
Interrobang 2022. 11. 7. 14:48문제 링크
문제 풀이
import sys
n, m = map(int, sys.stdin.readline().strip().split())
pokemon_dict = {}
for i in range(n):
pokemon = sys.stdin.readline().strip()
pokemon_dict[i + 1] = pokemon
pokemon_dict[pokemon] = i + 1
for i in range(m):
test = sys.stdin.readline().strip()
if test.isdigit() == True:
print(pokemon_dict[int(test)])
elif test.isalpha() == True:
print(pokemon_dict[test])
*key point: 리스트를 이용해서도 구현할 수 있지만 시간 초과를 해결하기 위해 딕셔너리 자료형을 이용한다. 번호를 입력하면 이름이, 이름을 입력하면 번호가 나오게 해야하므로 key와 value가 정반대인 데이터도 포함하도록 딕셔너리를 만든다.
'What I Learned > Algorithm Practice' 카테고리의 다른 글
[백준 - python] 1764번: 듣보잡 (0) | 2022.11.09 |
---|---|
[백준 - python] 10816번: 숫자 카드 2 (0) | 2022.11.08 |
[백준 - python] 14425번: 문자열 집합 (0) | 2022.11.06 |
[백준 - python] 1436번: 영화감독 숌 (0) | 2022.11.05 |
[백준 - python] 7568번: 덩치 (1) | 2022.11.04 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- programmer
- Python
- 5597
- 13909
- MySQL
- 26069
- 24313
- 25192
- 2587
- 13241
- 항해 플러스
- 25501
- 백준
- 2903
- Programmers
- 24060
- 코육대
- 10807
- 항해+
- 24723
- 2738
- 20920
- 2053
- Wil
- 1269
- til
- 4134
- 17103
- 벡준
- SQL
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
글 보관함