結果

問題 No.1823 Tricolor Dango
ユーザー puznekopuzneko
提出日時 2022-02-11 23:42:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 108 ms / 2,000 ms
コード長 487 bytes
コンパイル時間 189 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 126,464 KB
最終ジャッジ日時 2024-06-27 22:11:32
合計ジャッジ時間 4,102 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,756 KB
testcase_01 AC 108 ms
98,048 KB
testcase_02 AC 103 ms
97,864 KB
testcase_03 AC 103 ms
98,032 KB
testcase_04 AC 86 ms
93,116 KB
testcase_05 AC 86 ms
93,056 KB
testcase_06 AC 88 ms
93,364 KB
testcase_07 AC 70 ms
91,264 KB
testcase_08 AC 70 ms
87,744 KB
testcase_09 AC 72 ms
93,184 KB
testcase_10 AC 78 ms
94,436 KB
testcase_11 AC 70 ms
90,752 KB
testcase_12 AC 72 ms
88,428 KB
testcase_13 AC 77 ms
95,104 KB
testcase_14 AC 78 ms
93,324 KB
testcase_15 AC 71 ms
87,808 KB
testcase_16 AC 53 ms
71,808 KB
testcase_17 AC 54 ms
71,552 KB
testcase_18 AC 69 ms
87,168 KB
testcase_19 AC 107 ms
126,464 KB
testcase_20 AC 68 ms
87,364 KB
testcase_21 AC 89 ms
95,104 KB
testcase_22 AC 101 ms
97,896 KB
testcase_23 AC 88 ms
95,132 KB
testcase_24 AC 95 ms
95,360 KB
testcase_25 AC 100 ms
97,684 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from sys import stdin
t, *indata = map(int, stdin.read().split())
offset = 0
for _ in range(t):
    n = indata[offset]
    a = []
    for i in range(n):
        a.append(indata[offset+i+1])
    offset += n + 1
    val = sum(a)
    if val % 3 != 0:
        print("No")
    else:
        val = val // 3
        check = True
        for i in range(n):
            if a[i] > val:
                check = False
        if check:
            print("Yes")
        else:
            print("No")
0