본문 바로가기
백준문제/브론즈 5

백준) 3052번 - python

by kiseno 2024. 2. 16.
728x90
반응형
SMALL
a,b,c = [],42,[]

for i in range(10):
    Input = int(input())
    a.append(Input)
    c.append(a[i] % b)

print(len(set(c)))
728x90
반응형
LIST

'백준문제 > 브론즈 5' 카테고리의 다른 글

백준) 4673번 - python  (0) 2024.02.18
백준) 4101번 - python  (0) 2024.02.17
백준) 3003번 - python  (0) 2024.02.15
백준) 2914번 - python  (0) 2024.02.14
백준) 2908번 - python  (1) 2024.02.13