結果

問題 No.1823 Tricolor Dango
ユーザー miya145592miya145592
提出日時 2023-05-06 01:46:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 164 ms / 2,000 ms
コード長 210 bytes
コンパイル時間 225 ms
コンパイル使用メモリ 82,724 KB
実行使用メモリ 101,776 KB
最終ジャッジ日時 2024-11-23 14:08:56
合計ジャッジ時間 5,059 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,840 KB
testcase_01 AC 160 ms
77,184 KB
testcase_02 AC 164 ms
77,568 KB
testcase_03 AC 164 ms
77,184 KB
testcase_04 AC 105 ms
76,160 KB
testcase_05 AC 105 ms
76,160 KB
testcase_06 AC 106 ms
76,160 KB
testcase_07 AC 63 ms
75,296 KB
testcase_08 AC 63 ms
75,136 KB
testcase_09 AC 64 ms
75,008 KB
testcase_10 AC 63 ms
75,264 KB
testcase_11 AC 65 ms
75,300 KB
testcase_12 AC 62 ms
75,272 KB
testcase_13 AC 61 ms
76,288 KB
testcase_14 AC 61 ms
75,776 KB
testcase_15 AC 66 ms
75,904 KB
testcase_16 AC 55 ms
67,200 KB
testcase_17 AC 56 ms
67,712 KB
testcase_18 AC 61 ms
77,440 KB
testcase_19 AC 98 ms
101,776 KB
testcase_20 AC 62 ms
77,952 KB
testcase_21 AC 144 ms
77,320 KB
testcase_22 AC 159 ms
77,440 KB
testcase_23 AC 132 ms
77,432 KB
testcase_24 AC 144 ms
77,184 KB
testcase_25 AC 159 ms
77,388 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