結果

問題 No.1823 Tricolor Dango
ユーザー irumo8202irumo8202
提出日時 2022-01-28 22:05:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 147 ms / 2,000 ms
コード長 306 bytes
コンパイル時間 148 ms
コンパイル使用メモリ 82,576 KB
実行使用メモリ 101,816 KB
最終ジャッジ日時 2024-06-09 15:10:52
合計ジャッジ時間 3,298 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,492 KB
testcase_01 AC 141 ms
77,768 KB
testcase_02 AC 140 ms
77,444 KB
testcase_03 AC 147 ms
77,436 KB
testcase_04 AC 89 ms
76,712 KB
testcase_05 AC 89 ms
76,384 KB
testcase_06 AC 104 ms
76,296 KB
testcase_07 AC 53 ms
75,444 KB
testcase_08 AC 53 ms
75,300 KB
testcase_09 AC 55 ms
75,316 KB
testcase_10 AC 53 ms
75,616 KB
testcase_11 AC 55 ms
75,212 KB
testcase_12 AC 52 ms
75,492 KB
testcase_13 AC 50 ms
76,212 KB
testcase_14 AC 51 ms
76,232 KB
testcase_15 AC 50 ms
76,144 KB
testcase_16 AC 42 ms
68,736 KB
testcase_17 AC 44 ms
69,400 KB
testcase_18 AC 52 ms
78,292 KB
testcase_19 AC 86 ms
101,816 KB
testcase_20 AC 54 ms
78,548 KB
testcase_21 AC 129 ms
77,376 KB
testcase_22 AC 142 ms
77,768 KB
testcase_23 AC 112 ms
77,580 KB
testcase_24 AC 123 ms
77,368 KB
testcase_25 AC 144 ms
77,516 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve():
    N = int(input())
    A = list(map(int, input().split()))

    sumA = sum(A)
    x = sumA / 3
    flg = True
    if x != int(x):
        flg = False
    for a in A:
        if a > x:
            flg = False
    print("Yes" if flg else "No")


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