Cute Running Puppy

algorithm/Baekjoon

[python] 백준 3052_나머지

R.silver 2021. 6. 23. 14:18
반응형

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

 

3052번: 나머지

각 수를 42로 나눈 나머지는 39, 40, 41, 0, 1, 2, 40, 41, 0, 1이다. 서로 다른 값은 6개가 있다.

www.acmicpc.net

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