๐Ÿ ํŒŒ์ด์ฌ ์ƒ์ดˆ์งœ

[BOJ][Python] ๋ฐฑ์ค€ 10797๋ฒˆ: 10๋ถ€์ œ

์„ ๋‹ฌ 2024. 9. 22. 04:20
๋ฐ˜์‘ํ˜•

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

 

 

n = int(input())
cars = map(int, input().split())

ans = 0

for i in cars:
    if i is n:
        ans += 1

print(ans)
๋ฐ˜์‘ํ˜•