백준 3052번 나머지 파이썬
2022.03.07 16:02
백준 3052번 나머지 파이썬 코드이다.
r = []
[r.append(int(input()) % 42) for i in range(10)]
print(len(set(r)))