https://www.acmicpc.net/problem/3052
풀이
b = []
for i in range(10):
a = int(input())
b.append(a%42)
b = set(b)
print(len(b))
'Python > Baekjoon' 카테고리의 다른 글
백준 8958번 : OX퀴즈 (0) | 2022.10.06 |
---|---|
백준 1546번 : 평균 (0) | 2022.10.06 |
백준 2562번 : 최댓값 (0) | 2022.10.06 |
백준 10818번 : 최소, 최대 (0) | 2022.10.06 |
백준 1110번 : 더하기 사이클 (0) | 2022.10.06 |