[문제]
https://www.acmicpc.net/problem/2547
[풀이]
간단한 수학 문제
[코드]
if __name__ == '__main__':
for _ in range(int(input())):
input()
student_num = int(input())
candy = 0
for __ in range(student_num):
candy += int(input())
if candy % student_num == 0:
print("YES")
else:
print("NO")
'문제풀이 > BOJ' 카테고리의 다른 글
[Python] BOJ/백준 1380번 귀걸이 (0) | 2021.07.18 |
---|---|
[Python] BOJ/백준 2720번 세탁소 사장 동혁 (0) | 2021.07.16 |
[Python] BOJ/백준 1864번 문어 숫자 (0) | 2021.07.15 |
[Python] BOJ/백준 2997번 네 번째 수 (0) | 2021.07.15 |
[Python] BOJ/백준 1652번 누울 자리를 찾아라 (0) | 2021.07.11 |