結果

問題 No.1823 Tricolor Dango
ユーザー shinichishinichi
提出日時 2022-01-28 21:28:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 209 ms / 2,000 ms
コード長 369 bytes
コンパイル時間 241 ms
コンパイル使用メモリ 82,444 KB
実行使用メモリ 101,972 KB
最終ジャッジ日時 2024-06-09 14:17:40
合計ジャッジ時間 3,470 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,292 KB
testcase_01 AC 157 ms
77,332 KB
testcase_02 AC 129 ms
78,104 KB
testcase_03 AC 209 ms
77,620 KB
testcase_04 AC 86 ms
76,084 KB
testcase_05 AC 85 ms
76,736 KB
testcase_06 AC 86 ms
76,188 KB
testcase_07 AC 57 ms
75,184 KB
testcase_08 AC 57 ms
75,380 KB
testcase_09 AC 58 ms
75,360 KB
testcase_10 AC 58 ms
75,324 KB
testcase_11 AC 57 ms
75,592 KB
testcase_12 AC 58 ms
75,660 KB
testcase_13 AC 55 ms
76,076 KB
testcase_14 AC 56 ms
76,580 KB
testcase_15 AC 53 ms
75,952 KB
testcase_16 AC 46 ms
67,868 KB
testcase_17 AC 49 ms
68,148 KB
testcase_18 AC 57 ms
79,428 KB
testcase_19 AC 94 ms
101,972 KB
testcase_20 AC 56 ms
78,032 KB
testcase_21 AC 143 ms
76,956 KB
testcase_22 AC 126 ms
77,644 KB
testcase_23 AC 112 ms
78,180 KB
testcase_24 AC 103 ms
76,460 KB
testcase_25 AC 194 ms
77,864 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T = int(input())
for _ in range(T):
    N = int(input())
    A = list(map(int, input().split()))
    can = True
    sumA = sum(A)
    if sumA % 3 != 0:
        can = False
    else:
        sticks = sumA // 3
        for a in A:
            if sticks < a:
                can = False
                break
    if can:
        print("Yes")
    else:
        print("No")
0