haju__log
[python][백준/BOJ] 10807번 : 개수 세기 본문
반응형
https://www.acmicpc.net/problem/10807
N=int(input())
str=input()
a=list(str.split())
V=int(input())
num=0
for i in range(N):
if int(a[i])==V:
num = num + 1
print(num)
더 간소화된 코드>>
N=int(input())
n_l=list(map(int, input().split()))
V=int(input())
print(n_l.count(V))
반응형
'BOJ_백준' 카테고리의 다른 글
[python][백준/BOJ] 10810번 : 공 넣기 (0) | 2023.02.23 |
---|---|
[python][백준/BOJ] 10871번 : X보다 작은 수 (0) | 2023.02.23 |
[python][백준/BOJ] 10951번 : A+B-4 (EOF) (0) | 2023.02.22 |
[python][백준/BOJ] 10952번 : A+B-5 (0) | 2023.02.22 |
[백준/BOJ] 2439번 : 별 찍기-2 (0) | 2023.02.22 |