結果

問題 No.1823 Tricolor Dango
ユーザー dangodango
提出日時 2023-06-24 21:40:09
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 199 bytes
コンパイル時間 200 ms
コンパイル使用メモリ 82,408 KB
実行使用メモリ 94,836 KB
最終ジャッジ日時 2024-07-02 00:42:27
合計ジャッジ時間 16,921 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
57,344 KB
testcase_01 AC 160 ms
77,216 KB
testcase_02 AC 151 ms
76,628 KB
testcase_03 AC 176 ms
77,628 KB
testcase_04 AC 136 ms
76,544 KB
testcase_05 AC 135 ms
76,256 KB
testcase_06 AC 138 ms
76,660 KB
testcase_07 AC 256 ms
75,776 KB
testcase_08 AC 236 ms
75,664 KB
testcase_09 AC 284 ms
76,032 KB
testcase_10 AC 271 ms
75,472 KB
testcase_11 AC 274 ms
75,776 KB
testcase_12 AC 233 ms
75,840 KB
testcase_13 TLE -
testcase_14 AC 1,771 ms
77,312 KB
testcase_15 AC 1,439 ms
76,108 KB
testcase_16 TLE -
testcase_17 AC 1,887 ms
80,128 KB
testcase_18 TLE -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

for _ in range(int(input())):
    N = int(input())
    A = list(map(int, input().split()))
    iO = (sum(A) % 3 == 0)
    for a in A:
        iO &= (a <= sum(A) // 3)
    print("Yes" if iO else "No")
0