結果

問題 No.1823 Tricolor Dango
ユーザー brthyyjpbrthyyjp
提出日時 2022-01-28 21:29:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 94 ms / 2,000 ms
コード長 371 bytes
コンパイル時間 155 ms
コンパイル使用メモリ 82,368 KB
実行使用メモリ 100,584 KB
最終ジャッジ日時 2024-06-09 14:19:18
合計ジャッジ時間 2,927 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,956 KB
testcase_01 AC 92 ms
76,404 KB
testcase_02 AC 92 ms
76,536 KB
testcase_03 AC 94 ms
76,388 KB
testcase_04 AC 69 ms
75,764 KB
testcase_05 AC 66 ms
75,764 KB
testcase_06 AC 65 ms
75,448 KB
testcase_07 AC 53 ms
75,032 KB
testcase_08 AC 52 ms
75,120 KB
testcase_09 AC 54 ms
75,492 KB
testcase_10 AC 53 ms
75,444 KB
testcase_11 AC 52 ms
75,556 KB
testcase_12 AC 51 ms
75,292 KB
testcase_13 AC 53 ms
77,236 KB
testcase_14 AC 53 ms
76,244 KB
testcase_15 AC 51 ms
75,288 KB
testcase_16 AC 45 ms
66,080 KB
testcase_17 AC 46 ms
66,040 KB
testcase_18 AC 53 ms
76,212 KB
testcase_19 AC 76 ms
100,584 KB
testcase_20 AC 54 ms
75,896 KB
testcase_21 AC 83 ms
76,292 KB
testcase_22 AC 88 ms
76,468 KB
testcase_23 AC 77 ms
76,152 KB
testcase_24 AC 83 ms
76,172 KB
testcase_25 AC 88 ms
76,232 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import io, os
input = sys.stdin.buffer.readline
#input = io.BytesIO(os.read(0,os.fstat(0).st_size)).readline

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')
        continue
    m = s//3
    if max(A) <= m:
        print('Yes')
    else:
        print('No')
0