728x90
remainders = list()
for i in range(10):
a = input()
remainder = int(a) % 42
remainders.append(remainder)
remainders = set(remainders)
print(len(remainders))
728x90
'Development > Algorithm' 카테고리의 다른 글
[Algorithm] 백준 15596번 문제 풀이 (0) | 2021.03.18 |
---|---|
[Algorithm] 백준 4344번 문제 풀이 (0) | 2021.03.17 |
[Algorithm] 백준 8958번 문제 풀이 (0) | 2021.03.17 |
[Algorithm] 백준 1546번 문제풀이 (0) | 2021.03.15 |
[Algorithm] 백준 2577번 문제풀이 (0) | 2021.03.05 |