結果

問題 No.1645 AB's abs
ユーザー NatsubiSoganNatsubiSogan
提出日時 2021-08-13 21:38:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 561 ms / 2,000 ms
コード長 499 bytes
コンパイル時間 233 ms
コンパイル使用メモリ 82,388 KB
実行使用メモリ 198,204 KB
最終ジャッジ日時 2024-10-03 17:52:30
合計ジャッジ時間 18,271 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
110,524 KB
testcase_01 AC 96 ms
102,996 KB
testcase_02 AC 255 ms
133,324 KB
testcase_03 AC 98 ms
103,412 KB
testcase_04 AC 112 ms
110,168 KB
testcase_05 AC 126 ms
111,416 KB
testcase_06 AC 146 ms
119,248 KB
testcase_07 AC 119 ms
99,976 KB
testcase_08 AC 294 ms
141,232 KB
testcase_09 AC 292 ms
142,004 KB
testcase_10 AC 268 ms
143,032 KB
testcase_11 AC 267 ms
143,132 KB
testcase_12 AC 271 ms
143,360 KB
testcase_13 AC 550 ms
196,804 KB
testcase_14 AC 521 ms
190,376 KB
testcase_15 AC 546 ms
197,028 KB
testcase_16 AC 525 ms
194,080 KB
testcase_17 AC 540 ms
195,092 KB
testcase_18 AC 523 ms
191,736 KB
testcase_19 AC 546 ms
195,992 KB
testcase_20 AC 518 ms
188,728 KB
testcase_21 AC 522 ms
192,972 KB
testcase_22 AC 559 ms
194,880 KB
testcase_23 AC 554 ms
197,080 KB
testcase_24 AC 553 ms
196,160 KB
testcase_25 AC 558 ms
196,636 KB
testcase_26 AC 557 ms
197,264 KB
testcase_27 AC 558 ms
195,864 KB
testcase_28 AC 558 ms
196,504 KB
testcase_29 AC 561 ms
195,924 KB
testcase_30 AC 558 ms
196,736 KB
testcase_31 AC 553 ms
197,360 KB
testcase_32 AC 556 ms
196,864 KB
testcase_33 AC 552 ms
197,232 KB
testcase_34 AC 556 ms
197,368 KB
testcase_35 AC 555 ms
197,200 KB
testcase_36 AC 549 ms
197,788 KB
testcase_37 AC 555 ms
197,368 KB
testcase_38 AC 555 ms
198,204 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
n = int(input())
a = list(map(int, input().split()))
dp = [defaultdict(int) for _ in range(n + 10)]
mod = 998244353
dp[0][0] = 1
for i in range(1, n + 1):
    for j in range(-(10 ** 4 + 10), 10 ** 4 + 10):
        dp[i][j + a[i - 1]] += dp[i - 1][j]
        dp[i][j + a[i - 1]] %= mod
        dp[i][j - a[i - 1]] += dp[i - 1][j]
        dp[i][j + a[i - 1]] %= mod
ans = 0
for i in range(-(10 ** 5), 10 ** 5):
    ans += dp[n][i] * abs(i)
    ans %= mod
print(ans)
0