BOJ - 10797번 10부제 (Python)

woga·2021년 1월 18일

python 풀이

목록 보기
19/27
post-thumbnail

문제 출처: https://www.acmicpc.net/problem/10797

난이도

Bronze 4


통과 코드

if __name__ == '__main__':
    day = int(input())
    arr = list(map(int,input().split()))
    count = 0
    for x in arr:
        if x == day:
            count += 1
    print(count)
profile
안드 개발자의 개인 탐구 및 공부 아카이빙

0개의 댓글