간단한 문제이다

대신 문제를 잘 읽자

출력을 보면 3명 사이에 나눠져야 한다고 되어있다. 예제입력 1 때문에 햇갈려서 처음에 틀렸다 허허

암튼, 코드는 다음과 같이 하면 된다.

1
2
3
4
5
6
7
8
9
10
contest_num = int(input())
prize = list(map(int, input().split()))
sum = 0
for i in range(contest_num):
    sum = sum + prize[i]
if sum % 3 != 0:
    print("no")
else:
    print("yes")
 
cs

 

 

출처: https://www.acmicpc.net/problem/20332

 

20332번: Divvying Up

A solid competitive programming team can rack up a lot of prize money. Knowing how strong your team is, you are certain to win a lot of contests, so you had better sit down now and check that everybody will receive the same fair distribution of winnings. Y

www.acmicpc.net

 

+ Recent posts