haju__log

[python][백준/BOJ] 10807번 : 개수 세기 본문

BOJ_백준

[python][백준/BOJ] 10807번 : 개수 세기

haju 2023. 2. 23. 15:27
반응형

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

 

10807번: 개수 세기

첫째 줄에 정수의 개수 N(1 ≤ N ≤ 100)이 주어진다. 둘째 줄에는 정수가 공백으로 구분되어져있다. 셋째 줄에는 찾으려고 하는 정수 v가 주어진다. 입력으로 주어지는 정수와 v는 -100보다 크거

www.acmicpc.net

 

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))
반응형