https://www.codetree.ai/missions/8/problems/number-frequency/description
import sys
from collections import Counter
input = sys.stdin.readline
n, m = map(int, input().split())
num = list(map(int, input().split()))
arr = list(map(int, input().split()))
counter = dict(Counter(num))
result = []
for i in range(len(arr)):
r = arr[i]
if r in counter.keys():
result.append(counter[r])
else:
result.append(0)
print(*result)
728x90
반응형
'🔻PS > Codetree' 카테고리의 다른 글
[Codetree] 정수 명령 처리 6 Python (0) | 2024.08.09 |
---|---|
[Codetree] 가장 많은 데이터 Python (0) | 2024.08.08 |
[Codetree] 가장 먼저 나오는 숫자 Python (0) | 2024.08.08 |
[Codetree] 가장 먼저 나오는 숫자 Python (0) | 2024.08.08 |
[Codetree] 가장 먼저 나오는 숫자 Python (0) | 2024.08.08 |