結果

問題 No.1823 Tricolor Dango
ユーザー ikomaikoma
提出日時 2022-01-28 23:48:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 90 ms / 2,000 ms
コード長 207 bytes
コンパイル時間 487 ms
コンパイル使用メモリ 82,232 KB
実行使用メモリ 100,220 KB
最終ジャッジ日時 2024-06-09 17:23:50
合計ジャッジ時間 3,638 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
51,712 KB
testcase_01 AC 87 ms
76,544 KB
testcase_02 AC 90 ms
76,724 KB
testcase_03 AC 89 ms
76,544 KB
testcase_04 AC 63 ms
75,504 KB
testcase_05 AC 63 ms
75,776 KB
testcase_06 AC 64 ms
75,520 KB
testcase_07 AC 52 ms
75,264 KB
testcase_08 AC 52 ms
75,392 KB
testcase_09 AC 52 ms
75,008 KB
testcase_10 AC 52 ms
75,264 KB
testcase_11 AC 54 ms
75,520 KB
testcase_12 AC 49 ms
75,392 KB
testcase_13 AC 56 ms
76,288 KB
testcase_14 AC 53 ms
76,192 KB
testcase_15 AC 51 ms
76,288 KB
testcase_16 AC 44 ms
66,560 KB
testcase_17 AC 44 ms
66,816 KB
testcase_18 AC 55 ms
76,800 KB
testcase_19 AC 86 ms
100,220 KB
testcase_20 AC 52 ms
77,056 KB
testcase_21 AC 76 ms
76,160 KB
testcase_22 AC 89 ms
76,416 KB
testcase_23 AC 71 ms
76,236 KB
testcase_24 AC 84 ms
76,252 KB
testcase_25 AC 87 ms
76,544 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

T=int(input())

for t in range(T):
    n=int(input())
    A=list(map(int,input().split()))
    Asum = sum(A)
    print("Yes" if Asum%3==0 and max(A)<=Asum//3 else "No")
0