← Back to List
20332번: Divvying Up ↗
Solutions
Python 3
76 B | 76 chars
n=input() print("no" if sum(list(map(int,input().split()))) % 3 else "yes")