반응형
https://www.acmicpc.net/problem/3052
remainder_list = []
for i in range(10):
num = int(input())
remainder_list.append(num % 42)
print(len(set(remainder_list)))
set 함수를 활용하면
중복된 원소를 제거할 수 있다.
반응형
'algorithm > Baekjoon' 카테고리의 다른 글
[python] 백준 15596_정수 N개의 합 (0) | 2021.06.25 |
---|---|
[python] 백준 4344_평균은 넘겠지 (0) | 2021.06.24 |
[python] 백준 8958_OX퀴즈 (0) | 2021.06.24 |
[python] 백준 1546_평균 (0) | 2021.06.23 |
[python] 백준 2577_숫자의 개수 (0) | 2021.06.21 |