結果

問題 No.1823 Tricolor Dango
ユーザー kept1994kept1994
提出日時 2022-05-09 02:03:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 103 ms / 2,000 ms
コード長 433 bytes
コンパイル時間 213 ms
コンパイル使用メモリ 82,168 KB
実行使用メモリ 100,152 KB
最終ジャッジ日時 2024-07-16 03:09:08
合計ジャッジ時間 4,098 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,488 KB
testcase_01 AC 87 ms
76,408 KB
testcase_02 AC 98 ms
76,764 KB
testcase_03 AC 103 ms
76,564 KB
testcase_04 AC 67 ms
75,496 KB
testcase_05 AC 63 ms
75,628 KB
testcase_06 AC 68 ms
75,636 KB
testcase_07 AC 55 ms
75,380 KB
testcase_08 AC 54 ms
75,584 KB
testcase_09 AC 55 ms
75,420 KB
testcase_10 AC 54 ms
75,392 KB
testcase_11 AC 52 ms
75,548 KB
testcase_12 AC 52 ms
75,484 KB
testcase_13 AC 55 ms
76,664 KB
testcase_14 AC 54 ms
76,404 KB
testcase_15 AC 54 ms
76,252 KB
testcase_16 AC 46 ms
67,992 KB
testcase_17 AC 48 ms
68,520 KB
testcase_18 AC 55 ms
77,632 KB
testcase_19 AC 92 ms
100,152 KB
testcase_20 AC 57 ms
78,120 KB
testcase_21 AC 84 ms
76,400 KB
testcase_22 AC 88 ms
76,336 KB
testcase_23 AC 75 ms
76,540 KB
testcase_24 AC 85 ms
76,396 KB
testcase_25 AC 86 ms
76,488 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
import sys
MOD = 998244353
input = sys.stdin.readline

def main():
    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
        if max(A) > S // 3:
            print("No")
            continue
        print("Yes")
    return

if __name__ == '__main__':
    main()
0