結果

問題 No.1823 Tricolor Dango
ユーザー KazunKazun
提出日時 2022-01-28 21:24:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 88 ms / 2,000 ms
コード長 303 bytes
コンパイル時間 319 ms
コンパイル使用メモリ 82,456 KB
実行使用メモリ 100,116 KB
最終ジャッジ日時 2024-06-09 14:12:33
合計ジャッジ時間 2,956 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,572 KB
testcase_01 AC 79 ms
76,172 KB
testcase_02 AC 81 ms
76,192 KB
testcase_03 AC 79 ms
76,548 KB
testcase_04 AC 61 ms
75,740 KB
testcase_05 AC 58 ms
75,328 KB
testcase_06 AC 58 ms
75,104 KB
testcase_07 AC 53 ms
75,708 KB
testcase_08 AC 51 ms
75,248 KB
testcase_09 AC 51 ms
75,048 KB
testcase_10 AC 51 ms
75,264 KB
testcase_11 AC 53 ms
75,420 KB
testcase_12 AC 51 ms
75,140 KB
testcase_13 AC 53 ms
76,488 KB
testcase_14 AC 51 ms
76,392 KB
testcase_15 AC 52 ms
76,204 KB
testcase_16 AC 43 ms
67,992 KB
testcase_17 AC 43 ms
68,084 KB
testcase_18 AC 54 ms
78,164 KB
testcase_19 AC 88 ms
100,116 KB
testcase_20 AC 49 ms
77,504 KB
testcase_21 AC 71 ms
76,000 KB
testcase_22 AC 72 ms
76,084 KB
testcase_23 AC 66 ms
76,164 KB
testcase_24 AC 72 ms
76,168 KB
testcase_25 AC 75 ms
76,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=sys.stdin.readline
write=sys.stdout.write

T=int(input())
Ans=[0]*T
for t in range(T):
    N=int(input())
    A=list(map(int,input().split()))

    S=sum(A)
    if S%3!=0:
        continue

    if max(A)<=S//3:
        Ans[t]=1

write("\n".join(map(lambda x:"Yes" if x else "No",Ans)))
0