https://www.acmicpc.net/problem/19539
n = int(input())
arr = list(map(int,input().split()))
a,b = divmod(sum(arr),3) #3으로 나눈 몫과 나머지
if not b :
cnt = 0
for i in arr:
cnt += i//2
if cnt >= a:
print("YES")
else:
print("NO")
else:
print("NO")
[백준_18513] 샘터 python (0) | 2022.08.26 |
---|---|
[백준_16932] 모양만들기 python (0) | 2022.08.26 |
[백준 5014] 스타트링크_python[BFS] (0) | 2022.06.19 |
[백준 python] 10799 쇠막대기 (0) | 2022.05.28 |
[백준_python] 2776 암기왕 (0) | 2022.05.15 |
댓글 영역