結果

問題 No.1823 Tricolor Dango
ユーザー ああいいああいい
提出日時 2022-01-29 11:44:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 154 ms / 2,000 ms
コード長 265 bytes
コンパイル時間 422 ms
コンパイル使用メモリ 82,460 KB
実行使用メモリ 101,704 KB
最終ジャッジ日時 2024-06-10 09:37:56
合計ジャッジ時間 3,591 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,552 KB
testcase_01 AC 148 ms
77,152 KB
testcase_02 AC 154 ms
77,504 KB
testcase_03 AC 141 ms
77,288 KB
testcase_04 AC 90 ms
76,068 KB
testcase_05 AC 89 ms
76,028 KB
testcase_06 AC 87 ms
76,088 KB
testcase_07 AC 55 ms
75,264 KB
testcase_08 AC 53 ms
75,136 KB
testcase_09 AC 55 ms
75,508 KB
testcase_10 AC 55 ms
75,240 KB
testcase_11 AC 52 ms
75,356 KB
testcase_12 AC 51 ms
74,972 KB
testcase_13 AC 50 ms
76,080 KB
testcase_14 AC 50 ms
76,372 KB
testcase_15 AC 54 ms
75,892 KB
testcase_16 AC 45 ms
68,224 KB
testcase_17 AC 47 ms
69,148 KB
testcase_18 AC 55 ms
79,044 KB
testcase_19 AC 92 ms
101,704 KB
testcase_20 AC 51 ms
78,472 KB
testcase_21 AC 120 ms
77,004 KB
testcase_22 AC 136 ms
77,696 KB
testcase_23 AC 110 ms
77,572 KB
testcase_24 AC 117 ms
77,336 KB
testcase_25 AC 152 ms
77,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T = int(input())

for _ in range(T):
    N = int(input())
    A = list(map(int,input().split()))
    S = sum(A)
    if S % 3 != 0:
        print('No')
    else:
        M = max(A)
        if M * 3 <= S:
            print('Yes')
        else:
            print('No')
0