# 개수 세기
n = int(input())
nlist = map(int, input().split())
v = int(input())
count = 0
for i in nlist:
if i == v:
count += 1
print(count)
'파이썬 > 백준' 카테고리의 다른 글
2750번: 수 정렬하기 (0) | 2022.11.28 |
---|---|
2775번 : 부녀회장이 될테야 (0) | 2022.11.14 |
1712번 : 손익분기점 (0) | 2022.09.26 |
1977번 : 완전제곱수 (0) | 2022.09.19 |
1110번 : 더하기 사이클 (0) | 2022.08.08 |