DHistory
[Baekjoon] Sort - 10816 숫자 카드 2 본문
문제
풀이
import sys
n = int(sys.stdin.readline().rstrip())
cards = list(map(int, sys.stdin.readline().rstrip().split()))
m = int(sys.stdin.readline().rstrip())
numbers = list(map(int, sys.stdin.readline().rstrip().split()))
def solution(cards, numbers):
counts = [0] * (10000000 * 2 + 2)
for number in cards:
counts[number] += 1
return [counts[number] for number in numbers]
print(*solution(cards, numbers))
채점 결과
'Computer Science > Algorithm' 카테고리의 다른 글
[Baekjoon] Sort - 10825 국영수 (0) | 2023.09.09 |
---|---|
[Baekjoon] Sort - 1764 듣보잡 (0) | 2023.09.09 |
[Baekjoon] Sort, Binary Search - 1920 수 찾기 (0) | 2023.09.09 |
[Baekjoon] Sort - 1251 단어 나누기 (0) | 2023.09.08 |
[Baekjoon] Sort - 5800 성적 통계 (0) | 2023.09.08 |