728x90
반응형
단순 사칙연산 문제이다.
T = int(input())
for _ in range(T):
q = input()
N = int(input())
li = [int(input()) for i in range(N)]
print("YES" if sum(li)%N == 0 else "NO")
728x90
반응형
'Agorithm > 백준 알고리즘' 카테고리의 다른 글
백준 알고리즘 2576번 홀수(python) (0) | 2021.02.11 |
---|---|
백준 알고리즘 2566번 최댓값(python) (0) | 2021.02.11 |
백준 알고리즘 2522번 별 찍기 - 12(python) (0) | 2021.02.11 |
백준 알고리즘 2511번 카드놀이(python) (0) | 2021.02.11 |
백준 알고리즘 2506번 점수계산(python) (0) | 2021.02.11 |