Scroll indicator done
728x90

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


arr = [int(input()) % 42 for _ in range(10)]
n = []
for i in range(len(arr)):
    if arr[i] not in n:
        n.append(arr[i])
print(len(n))
728x90

'BAEKJOON > Python' 카테고리의 다른 글

[B1700][멀티탭 스케줄링][python]  (0) 2021.03.12
[B1181][단어 정렬][python]  (0) 2021.03.10
[B2908][상수][python]  (0) 2021.03.10
[B2439][별 찍기 - 2][python]  (0) 2021.03.10
[B2475][검증수][python]  (0) 2021.03.10