結果

問題 No.1823 Tricolor Dango
ユーザー tnodinotnodino
提出日時 2022-04-02 19:36:54
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 152 ms / 2,000 ms
コード長 261 bytes
コンパイル時間 88 ms
コンパイル使用メモリ 12,288 KB
実行使用メモリ 32,508 KB
最終ジャッジ日時 2024-11-21 22:07:12
合計ジャッジ時間 3,606 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 146 ms
10,624 KB
testcase_02 AC 139 ms
10,496 KB
testcase_03 AC 150 ms
10,496 KB
testcase_04 AC 74 ms
10,496 KB
testcase_05 AC 70 ms
10,624 KB
testcase_06 AC 68 ms
10,496 KB
testcase_07 AC 65 ms
10,880 KB
testcase_08 AC 64 ms
10,880 KB
testcase_09 AC 70 ms
10,880 KB
testcase_10 AC 67 ms
11,008 KB
testcase_11 AC 66 ms
10,880 KB
testcase_12 AC 60 ms
10,880 KB
testcase_13 AC 71 ms
12,488 KB
testcase_14 AC 68 ms
12,472 KB
testcase_15 AC 60 ms
12,308 KB
testcase_16 AC 48 ms
14,380 KB
testcase_17 AC 47 ms
14,700 KB
testcase_18 AC 80 ms
19,692 KB
testcase_19 AC 152 ms
32,508 KB
testcase_20 AC 80 ms
19,516 KB
testcase_21 AC 101 ms
10,496 KB
testcase_22 AC 134 ms
10,496 KB
testcase_23 AC 74 ms
10,624 KB
testcase_24 AC 99 ms
10,624 KB
testcase_25 AC 137 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve():
    N = int(input())
    A = list(map(int,input().split()))
    A.sort()
    S = sum(A)
    M = S // 3
    if S % 3 == 0 and max(A) <= M:
        print('Yes')
    else:
        print('No')
    return

T = int(input())
for _ in range(T):
    solve()
0