結果

問題 No.1823 Tricolor Dango
ユーザー syunsukesyunsuke
提出日時 2022-01-29 10:58:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 147 ms / 2,000 ms
コード長 228 bytes
コンパイル時間 265 ms
コンパイル使用メモリ 82,320 KB
実行使用メモリ 102,228 KB
最終ジャッジ日時 2024-06-10 08:48:12
合計ジャッジ時間 3,448 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,348 KB
testcase_01 AC 141 ms
77,628 KB
testcase_02 AC 141 ms
77,540 KB
testcase_03 AC 147 ms
77,336 KB
testcase_04 AC 89 ms
76,320 KB
testcase_05 AC 89 ms
76,096 KB
testcase_06 AC 86 ms
76,232 KB
testcase_07 AC 52 ms
75,520 KB
testcase_08 AC 52 ms
75,224 KB
testcase_09 AC 54 ms
75,380 KB
testcase_10 AC 52 ms
75,424 KB
testcase_11 AC 54 ms
75,512 KB
testcase_12 AC 56 ms
75,180 KB
testcase_13 AC 53 ms
76,256 KB
testcase_14 AC 56 ms
75,868 KB
testcase_15 AC 49 ms
76,088 KB
testcase_16 AC 42 ms
67,576 KB
testcase_17 AC 41 ms
68,160 KB
testcase_18 AC 51 ms
78,120 KB
testcase_19 AC 85 ms
102,228 KB
testcase_20 AC 50 ms
78,076 KB
testcase_21 AC 125 ms
77,068 KB
testcase_22 AC 133 ms
77,312 KB
testcase_23 AC 109 ms
77,528 KB
testcase_24 AC 120 ms
77,072 KB
testcase_25 AC 133 ms
77,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T = int(input())

for i in range(T):
    N = int(input())
    L = list(map(int,input().split()))
    S = sum(L)
    
    if S%3 != 0:
        print("No")
    elif max(L) > S//3:
        print("No")
    else:
        print("Yes")
0