n = int(input())
num = list(map(int, input().split()))
m = int(input())
count = 0
for i in num:
if i == m:
count += 1
print(count)
'Python > 백준' 카테고리의 다른 글
백준 - 1312 소수 (0) | 2022.11.02 |
---|---|
백준 - 10951 a+b -4 (0) | 2022.10.25 |
백준 - 5532 방학숙제 (0) | 2022.10.23 |
백준 - 111728 배열 합치기 (0) | 2022.10.22 |
백준 - 11004 K번째 수 (0) | 2022.10.21 |