結果

問題 No.1645 AB's abs
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2021-08-13 21:34:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 140 ms / 2,000 ms
コード長 423 bytes
コンパイル時間 288 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 95,360 KB
最終ジャッジ日時 2024-10-03 17:34:37
合計ジャッジ時間 6,041 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 69 ms
67,072 KB
testcase_01 AC 57 ms
62,720 KB
testcase_02 AC 101 ms
78,336 KB
testcase_03 AC 58 ms
62,592 KB
testcase_04 AC 71 ms
67,200 KB
testcase_05 AC 72 ms
68,096 KB
testcase_06 AC 78 ms
70,656 KB
testcase_07 AC 71 ms
67,840 KB
testcase_08 AC 107 ms
80,384 KB
testcase_09 AC 108 ms
80,640 KB
testcase_10 AC 99 ms
79,616 KB
testcase_11 AC 94 ms
80,000 KB
testcase_12 AC 92 ms
80,000 KB
testcase_13 AC 136 ms
94,336 KB
testcase_14 AC 131 ms
93,184 KB
testcase_15 AC 133 ms
94,592 KB
testcase_16 AC 130 ms
94,208 KB
testcase_17 AC 131 ms
94,464 KB
testcase_18 AC 128 ms
93,568 KB
testcase_19 AC 133 ms
94,592 KB
testcase_20 AC 140 ms
92,416 KB
testcase_21 AC 132 ms
93,440 KB
testcase_22 AC 133 ms
94,464 KB
testcase_23 AC 137 ms
95,104 KB
testcase_24 AC 135 ms
94,848 KB
testcase_25 AC 136 ms
94,848 KB
testcase_26 AC 135 ms
95,104 KB
testcase_27 AC 134 ms
94,976 KB
testcase_28 AC 133 ms
94,976 KB
testcase_29 AC 134 ms
94,976 KB
testcase_30 AC 137 ms
94,976 KB
testcase_31 AC 135 ms
94,976 KB
testcase_32 AC 136 ms
95,360 KB
testcase_33 AC 134 ms
94,464 KB
testcase_34 AC 134 ms
94,720 KB
testcase_35 AC 133 ms
94,592 KB
testcase_36 AC 132 ms
94,592 KB
testcase_37 AC 138 ms
94,592 KB
testcase_38 AC 130 ms
94,336 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import itertools

N = int(input())
A = list(map(int,input().split()))
mod = 998244353

dp = [[0] * 30000 for i in range(N+1)]
dp[0][0] = 1

for i in range(N):
    for j in range(10000,-10001,-1):
        dp[i+1][j+A[i]] += dp[i][j]
        dp[i+1][j+A[i]] %= mod
        dp[i+1][j-A[i]] += dp[i][j]
        dp[i+1][j-A[i]] %= mod

ans = 0
for j in range(10000,-10001,-1):

    ans += abs(dp[-1][j] * j)

print (ans % mod)
0