[백준] #10816 숫자 카드 2 python
2022. 12. 30. 16:40
https://www.acmicpc.net/problem/10816
📕 설명 📕
1. N개의 숫자에 대해 dictionary에 넣어서 개수를 추가한다.
🧑🏻💻 나의 풀이 🧑🏻💻
N = int(input())
N_list = list(map(int,input().split()))
N_dict = {}
for i in N_list:
if i not in N_dict:
N_dict[i] = 1
else:
N_dict[i] += 1
M = int(input())
M_list = list(map(int,input().split()))
result = []
for i in M_list:
if i not in N_dict:
result.append(0)
else:
result.append(N_dict[i])
print(*result)
'Programming > Algorithm' 카테고리의 다른 글
[백준] #1269 대칭 차집합 python (0) | 2022.12.30 |
---|---|
[백준] #1764 듣보잡 python (0) | 2022.12.30 |
[백준] #1620 나는야 포켓몬 마스터 이다솜 python (0) | 2022.12.30 |
[백준] #14425 문자열 집합 python (0) | 2022.12.30 |
[백준] #10815 숫자 카드 python (0) | 2022.12.30 |