[python] 백준 10807 개수 세기

rse·2022년 11월 28일
0

알고리즘

목록 보기
14/44
post-custom-banner

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

말 그대로 개수를 세면 되는 문제이다.

n = int(input())
n_list = list(map(int, input().split()))
v = int(input())
print(n_list.count(v))

정말정말 간단한 문제인데 나는 n에 입력된만큼의 리스트 칸을 만들고 입력해야하는 줄 알고 엄청 헤맸는데 알고보니 따로 입력받는...ㅎㅎ

profile
기록을 합시다
post-custom-banner

0개의 댓글