結果

問題 No.1823 Tricolor Dango
ユーザー harapecoharapeco
提出日時 2022-03-14 14:12:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 156 ms / 2,000 ms
コード長 195 bytes
コンパイル時間 147 ms
コンパイル使用メモリ 82,704 KB
実行使用メモリ 101,896 KB
最終ジャッジ日時 2024-09-20 00:20:18
合計ジャッジ時間 4,477 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,940 KB
testcase_01 AC 156 ms
77,084 KB
testcase_02 AC 147 ms
77,388 KB
testcase_03 AC 152 ms
77,396 KB
testcase_04 AC 94 ms
76,132 KB
testcase_05 AC 92 ms
76,284 KB
testcase_06 AC 94 ms
75,956 KB
testcase_07 AC 56 ms
75,436 KB
testcase_08 AC 54 ms
75,532 KB
testcase_09 AC 54 ms
75,100 KB
testcase_10 AC 55 ms
75,044 KB
testcase_11 AC 56 ms
75,056 KB
testcase_12 AC 53 ms
75,292 KB
testcase_13 AC 53 ms
76,212 KB
testcase_14 AC 53 ms
76,536 KB
testcase_15 AC 50 ms
76,156 KB
testcase_16 AC 43 ms
67,876 KB
testcase_17 AC 43 ms
68,584 KB
testcase_18 AC 52 ms
78,660 KB
testcase_19 AC 87 ms
101,896 KB
testcase_20 AC 53 ms
78,092 KB
testcase_21 AC 132 ms
77,472 KB
testcase_22 AC 149 ms
77,020 KB
testcase_23 AC 122 ms
76,884 KB
testcase_24 AC 128 ms
77,368 KB
testcase_25 AC 149 ms
77,296 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