結果

問題 No.1645 AB's abs
ユーザー tktk_snsntktk_snsn
提出日時 2021-08-13 21:30:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 69 ms / 2,000 ms
コード長 400 bytes
コンパイル時間 208 ms
コンパイル使用メモリ 82,044 KB
実行使用メモリ 81,184 KB
最終ジャッジ日時 2024-10-03 17:19:56
合計ジャッジ時間 3,689 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,136 KB
testcase_01 AC 34 ms
52,380 KB
testcase_02 AC 50 ms
69,216 KB
testcase_03 AC 32 ms
52,872 KB
testcase_04 AC 32 ms
53,008 KB
testcase_05 AC 32 ms
54,064 KB
testcase_06 AC 44 ms
61,716 KB
testcase_07 AC 33 ms
53,808 KB
testcase_08 AC 52 ms
70,732 KB
testcase_09 AC 53 ms
70,528 KB
testcase_10 AC 52 ms
71,112 KB
testcase_11 AC 51 ms
70,692 KB
testcase_12 AC 51 ms
70,656 KB
testcase_13 AC 65 ms
80,624 KB
testcase_14 AC 62 ms
78,972 KB
testcase_15 AC 64 ms
81,080 KB
testcase_16 AC 63 ms
80,544 KB
testcase_17 AC 65 ms
80,876 KB
testcase_18 AC 62 ms
79,812 KB
testcase_19 AC 64 ms
81,116 KB
testcase_20 AC 61 ms
79,800 KB
testcase_21 AC 62 ms
79,684 KB
testcase_22 AC 64 ms
80,132 KB
testcase_23 AC 64 ms
81,184 KB
testcase_24 AC 64 ms
80,140 KB
testcase_25 AC 64 ms
80,352 KB
testcase_26 AC 66 ms
80,840 KB
testcase_27 AC 65 ms
80,924 KB
testcase_28 AC 64 ms
79,820 KB
testcase_29 AC 64 ms
80,708 KB
testcase_30 AC 65 ms
80,684 KB
testcase_31 AC 66 ms
80,100 KB
testcase_32 AC 63 ms
81,184 KB
testcase_33 AC 69 ms
80,392 KB
testcase_34 AC 68 ms
79,952 KB
testcase_35 AC 67 ms
80,520 KB
testcase_36 AC 69 ms
81,092 KB
testcase_37 AC 68 ms
80,648 KB
testcase_38 AC 68 ms
80,540 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 998244353
U = 100 * 100 * 2 + 10

N = int(input())
A = list(map(int, input().split()))
S = 0

dp = [0] * U
dp[0] = 1
for a in A:
    ndp = [0] * U
    for i in range(-S, S+1):
        ndp[i + a] += dp[i]
        ndp[i - a] += dp[i]
        ndp[i + a] %= mod
        ndp[i - a] %= mod
    S += a
    dp = ndp

ans = 0
for i in range(-S, S+1):
    ans += abs(i) * dp[i]
    ans %= mod
print(ans)
0