백준문제/브론즈 4
백준) 10797번 - python
kiseno
2024. 4. 10. 11:30
728x90
반응형
SMALL
a, count = int(input()), 0
b = list(map(int, input().split()))
for i in range(len(b)):
if b[i] == a: count += 1
print(count)
728x90
반응형
LIST