結果

問題 No.1823 Tricolor Dango
ユーザー playerplayer
提出日時 2024-01-07 17:18:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 165 ms / 2,000 ms
コード長 265 bytes
コンパイル時間 210 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 102,256 KB
最終ジャッジ日時 2024-09-27 19:27:10
合計ジャッジ時間 4,699 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,644 KB
testcase_01 AC 165 ms
77,352 KB
testcase_02 AC 163 ms
77,236 KB
testcase_03 AC 160 ms
77,292 KB
testcase_04 AC 102 ms
76,360 KB
testcase_05 AC 104 ms
76,216 KB
testcase_06 AC 103 ms
76,556 KB
testcase_07 AC 62 ms
75,368 KB
testcase_08 AC 59 ms
75,164 KB
testcase_09 AC 62 ms
75,292 KB
testcase_10 AC 61 ms
75,212 KB
testcase_11 AC 61 ms
75,148 KB
testcase_12 AC 59 ms
75,472 KB
testcase_13 AC 57 ms
76,376 KB
testcase_14 AC 58 ms
76,284 KB
testcase_15 AC 57 ms
75,884 KB
testcase_16 AC 49 ms
67,240 KB
testcase_17 AC 49 ms
67,692 KB
testcase_18 AC 59 ms
78,516 KB
testcase_19 AC 95 ms
102,256 KB
testcase_20 AC 59 ms
79,656 KB
testcase_21 AC 147 ms
77,600 KB
testcase_22 AC 161 ms
77,288 KB
testcase_23 AC 130 ms
77,524 KB
testcase_24 AC 140 ms
77,248 KB
testcase_25 AC 163 ms
77,276 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

t = int(input())

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