結果

問題 No.1823 Tricolor Dango
ユーザー 8989
提出日時 2022-02-21 01:12:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 164 ms / 2,000 ms
コード長 194 bytes
コンパイル時間 209 ms
コンパイル使用メモリ 82,308 KB
実行使用メモリ 102,016 KB
最終ジャッジ日時 2024-06-29 11:00:01
合計ジャッジ時間 4,648 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,584 KB
testcase_01 AC 159 ms
77,416 KB
testcase_02 AC 164 ms
77,240 KB
testcase_03 AC 156 ms
77,320 KB
testcase_04 AC 100 ms
76,032 KB
testcase_05 AC 101 ms
76,032 KB
testcase_06 AC 101 ms
76,436 KB
testcase_07 AC 60 ms
75,232 KB
testcase_08 AC 58 ms
75,472 KB
testcase_09 AC 63 ms
75,124 KB
testcase_10 AC 61 ms
75,328 KB
testcase_11 AC 60 ms
74,836 KB
testcase_12 AC 60 ms
75,392 KB
testcase_13 AC 58 ms
76,004 KB
testcase_14 AC 58 ms
75,776 KB
testcase_15 AC 56 ms
76,248 KB
testcase_16 AC 48 ms
66,304 KB
testcase_17 AC 49 ms
67,584 KB
testcase_18 AC 58 ms
77,568 KB
testcase_19 AC 95 ms
102,016 KB
testcase_20 AC 58 ms
77,440 KB
testcase_21 AC 142 ms
77,312 KB
testcase_22 AC 157 ms
77,184 KB
testcase_23 AC 128 ms
77,372 KB
testcase_24 AC 139 ms
76,920 KB
testcase_25 AC 164 ms
77,536 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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