結果

問題 No.1823 Tricolor Dango
ユーザー DrDrpilotDrDrpilot
提出日時 2022-01-31 21:57:12
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 138 ms / 2,000 ms
コード長 231 bytes
コンパイル時間 268 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 32,636 KB
最終ジャッジ日時 2024-06-11 09:04:37
合計ジャッジ時間 3,077 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,752 KB
testcase_01 AC 136 ms
10,624 KB
testcase_02 AC 135 ms
10,624 KB
testcase_03 AC 134 ms
10,880 KB
testcase_04 AC 59 ms
10,624 KB
testcase_05 AC 59 ms
10,752 KB
testcase_06 AC 61 ms
10,752 KB
testcase_07 AC 51 ms
11,136 KB
testcase_08 AC 47 ms
11,136 KB
testcase_09 AC 51 ms
11,264 KB
testcase_10 AC 50 ms
11,264 KB
testcase_11 AC 49 ms
11,136 KB
testcase_12 AC 46 ms
11,008 KB
testcase_13 AC 52 ms
13,232 KB
testcase_14 AC 48 ms
13,752 KB
testcase_15 AC 47 ms
13,400 KB
testcase_16 AC 37 ms
14,512 KB
testcase_17 AC 37 ms
14,896 KB
testcase_18 AC 56 ms
19,824 KB
testcase_19 AC 95 ms
32,636 KB
testcase_20 AC 54 ms
19,644 KB
testcase_21 AC 89 ms
10,752 KB
testcase_22 AC 133 ms
10,624 KB
testcase_23 AC 69 ms
10,752 KB
testcase_24 AC 99 ms
10,752 KB
testcase_25 AC 138 ms
10,880 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:
        if sum(a)//3<max(a):
            print('No')
        else:
            print('Yes')
0