結果

問題 No.1823 Tricolor Dango
ユーザー lloyzlloyz
提出日時 2022-01-28 23:22:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 156 ms / 2,000 ms
コード長 228 bytes
コンパイル時間 183 ms
コンパイル使用メモリ 82,556 KB
実行使用メモリ 101,668 KB
最終ジャッジ日時 2024-06-09 16:54:56
合計ジャッジ時間 3,616 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,900 KB
testcase_01 AC 155 ms
77,788 KB
testcase_02 AC 156 ms
77,044 KB
testcase_03 AC 156 ms
77,656 KB
testcase_04 AC 98 ms
76,692 KB
testcase_05 AC 101 ms
76,356 KB
testcase_06 AC 100 ms
76,160 KB
testcase_07 AC 59 ms
75,268 KB
testcase_08 AC 57 ms
75,232 KB
testcase_09 AC 60 ms
75,176 KB
testcase_10 AC 59 ms
75,436 KB
testcase_11 AC 61 ms
75,056 KB
testcase_12 AC 58 ms
75,192 KB
testcase_13 AC 60 ms
76,184 KB
testcase_14 AC 59 ms
76,612 KB
testcase_15 AC 56 ms
75,996 KB
testcase_16 AC 48 ms
67,508 KB
testcase_17 AC 49 ms
67,328 KB
testcase_18 AC 59 ms
77,728 KB
testcase_19 AC 96 ms
101,668 KB
testcase_20 AC 57 ms
77,916 KB
testcase_21 AC 136 ms
77,156 KB
testcase_22 AC 150 ms
77,152 KB
testcase_23 AC 127 ms
77,356 KB
testcase_24 AC 138 ms
77,496 KB
testcase_25 AC 153 ms
76,884 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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