[백준 알고리즘] 10816번 숫자 카드 2 (Python)언어, 알고리즘 공부/백준2020. 5. 5. 17:43
Table of Contents
<Python>
import sys
N = int(sys.stdin.readline())
N_list = list(map(int, sys.stdin.readline().split()))
N_list.sort()
M = int(sys.stdin.readline())
M_list = list(map(int, sys.stdin.readline().split()))
hashmap = {}
for n in N_list:
if n in hashmap:
hashmap[n] += 1
else:
hashmap[n] = 1
print(" ".join(str(hashmap[m]) if m in hashmap else '0' for m in M_list))
▼링크
https://www.acmicpc.net/problem/10816
반응형
'언어, 알고리즘 공부 > 백준' 카테고리의 다른 글
[백준 알고리즘] 9498번 시험 성적 (Java) (0) | 2020.05.08 |
---|---|
[백준 알고리즘] 1966번 프린터 큐 (Python) (0) | 2020.05.01 |
[백준 알고리즘] 11866번 요세푸스 문제 0 (Python) (0) | 2020.05.01 |
[백준 알고리즘] 2164번 카드2 (Python) (0) | 2020.05.01 |
[백준 알고리즘] 2748번 피보나치 수 2 (Python) (0) | 2020.04.30 |
@쿠몬e :: ˚˛˚ * December☃ 。* 。˛˚
전공 공부 기록 📘
포스팅이 좋았다면 "좋아요❤️" 또는 "구독👍🏻" 해주세요!