結果

問題 No.1823 Tricolor Dango
ユーザー ShirotsumeShirotsume
提出日時 2021-12-07 12:44:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 121 ms / 2,000 ms
コード長 453 bytes
コンパイル時間 140 ms
コンパイル使用メモリ 81,876 KB
実行使用メモリ 103,576 KB
最終ジャッジ日時 2024-11-14 07:59:01
合計ジャッジ時間 3,935 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
61,600 KB
testcase_01 AC 116 ms
78,220 KB
testcase_02 AC 116 ms
78,160 KB
testcase_03 AC 121 ms
78,256 KB
testcase_04 AC 88 ms
77,364 KB
testcase_05 AC 86 ms
77,568 KB
testcase_06 AC 86 ms
77,440 KB
testcase_07 AC 70 ms
76,832 KB
testcase_08 AC 71 ms
76,948 KB
testcase_09 AC 71 ms
76,808 KB
testcase_10 AC 71 ms
76,940 KB
testcase_11 AC 68 ms
76,940 KB
testcase_12 AC 69 ms
76,880 KB
testcase_13 AC 69 ms
77,708 KB
testcase_14 AC 70 ms
78,212 KB
testcase_15 AC 69 ms
77,148 KB
testcase_16 AC 59 ms
72,584 KB
testcase_17 AC 61 ms
73,768 KB
testcase_18 AC 71 ms
83,392 KB
testcase_19 AC 103 ms
103,576 KB
testcase_20 AC 68 ms
83,432 KB
testcase_21 AC 106 ms
78,012 KB
testcase_22 AC 119 ms
78,196 KB
testcase_23 AC 104 ms
77,828 KB
testcase_24 AC 106 ms
78,124 KB
testcase_25 AC 121 ms
78,120 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda: sys.stdin.readline().rstrip()
import bisect
import itertools
import math
from collections import deque
from collections import Counter
import copy
INF = 10 ** 9
import random

def solve():
    n = int(input())
    a = list(map(int,input().split()))
    if sum(a) % 3 == 0 and max(a) <= sum(a) // 3:
        return 'Yes'
    else:
        return 'No'







    



    
t = int(input())
for _ in range(t):
    print(solve())

0