본문 바로가기

Programming [Python]/백준 알고리즘 솔루션

#236 백준 파이썬 [10797] 10부제

https://www.acmicpc.net/problem/10797

 

Python Code

N = int(input())
car_list = list(map(int, input().split()))
print(car_list.count(N))