結果

問題 No.1823 Tricolor Dango
ユーザー miya145592miya145592
提出日時 2023-05-06 01:46:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 165 ms / 2,000 ms
コード長 210 bytes
コンパイル時間 322 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 102,016 KB
最終ジャッジ日時 2024-05-02 20:03:25
合計ジャッジ時間 4,358 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,968 KB
testcase_01 AC 164 ms
77,440 KB
testcase_02 AC 158 ms
77,312 KB
testcase_03 AC 165 ms
77,056 KB
testcase_04 AC 108 ms
76,160 KB
testcase_05 AC 106 ms
76,416 KB
testcase_06 AC 108 ms
76,160 KB
testcase_07 AC 69 ms
75,264 KB
testcase_08 AC 69 ms
75,264 KB
testcase_09 AC 66 ms
75,520 KB
testcase_10 AC 66 ms
75,008 KB
testcase_11 AC 65 ms
75,264 KB
testcase_12 AC 62 ms
75,520 KB
testcase_13 AC 61 ms
76,160 KB
testcase_14 AC 60 ms
76,032 KB
testcase_15 AC 58 ms
75,648 KB
testcase_16 AC 46 ms
66,944 KB
testcase_17 AC 48 ms
67,456 KB
testcase_18 AC 58 ms
77,696 KB
testcase_19 AC 99 ms
102,016 KB
testcase_20 AC 59 ms
77,312 KB
testcase_21 AC 139 ms
77,184 KB
testcase_22 AC 152 ms
77,312 KB
testcase_23 AC 123 ms
77,696 KB
testcase_24 AC 133 ms
77,440 KB
testcase_25 AC 146 ms
77,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T = int(input())
for _ in range(T):
    N = int(input())
    A = list(map(int, input().split()))
    ma = max(A)
    s = sum(A)
    if s%3==0 and (s-ma)>=ma*2:
        print("Yes")
    else:
        print("No")
0