結果

問題 No.1823 Tricolor Dango
ユーザー prussian_coderprussian_coder
提出日時 2022-01-30 13:26:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 158 ms / 2,000 ms
コード長 183 bytes
コンパイル時間 148 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 93,952 KB
最終ジャッジ日時 2024-06-11 08:12:10
合計ジャッジ時間 3,529 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
51,456 KB
testcase_01 AC 158 ms
77,568 KB
testcase_02 AC 156 ms
77,568 KB
testcase_03 AC 150 ms
77,312 KB
testcase_04 AC 100 ms
76,160 KB
testcase_05 AC 100 ms
76,416 KB
testcase_06 AC 99 ms
76,544 KB
testcase_07 AC 64 ms
75,008 KB
testcase_08 AC 60 ms
73,088 KB
testcase_09 AC 66 ms
75,008 KB
testcase_10 AC 65 ms
75,264 KB
testcase_11 AC 63 ms
74,880 KB
testcase_12 AC 62 ms
73,088 KB
testcase_13 AC 62 ms
76,160 KB
testcase_14 AC 62 ms
75,904 KB
testcase_15 AC 56 ms
72,192 KB
testcase_16 AC 46 ms
63,744 KB
testcase_17 AC 46 ms
65,024 KB
testcase_18 AC 55 ms
71,808 KB
testcase_19 AC 80 ms
93,952 KB
testcase_20 AC 54 ms
72,320 KB
testcase_21 AC 134 ms
77,440 KB
testcase_22 AC 151 ms
77,312 KB
testcase_23 AC 134 ms
77,568 KB
testcase_24 AC 141 ms
76,928 KB
testcase_25 AC 152 ms
77,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

Q=int(input())
for _ in range(Q):
    N=int(input())
    A=[int(x) for x in input().split()]
    if sum(A)%3!=0 or max(A)>sum(A)//3:
        print("No")
    else:
        print("Yes")
0