티스토리 뷰
# 10816 숫자카드 2
import sys
N = int(sys.stdin.readline())
cards = map(int, sys.stdin.readline().split())
dic = {}
M = int(sys.stdin.readline())
data = map(int, sys.stdin.readline().split())
for i in cards:
try:
dic[i] += 1
except:
dic[i] = 1
for j in data:
try:
print(dic[j], end = " ")
except:
print(0, end= " ")
'Algorithm > noj.am' 카테고리의 다른 글
[Python] 백준 1780번 - 종이의 갯수 (0) | 2021.01.24 |
---|---|
[Python] 백준 11728번 - 배열 합치기 (0) | 2021.01.22 |
[Python] 백준 10825번 - 국영수 / 여러 조건 한번에 sort하기 (0) | 2021.01.21 |
[Python] 백준 2805번 - 나무 자르기 (0) | 2021.01.21 |
[Python] 백준 1260번 - DFS와 BFS (0) | 2021.01.12 |