baekjoon 20260316

This commit is contained in:
songyc macbook 2026-03-17 22:36:44 +09:00
parent 9a73a9dcfd
commit 4ca3db136a

View File

@ -0,0 +1,6 @@
res = []
for _ in range(int(input())) :
input()
N = int(input())
res.append("NO" if sum([int(input()) for _ in range(N)]) % N else "YES")
print("\n".join(map(str, res)))