結果

問題 No.1645 AB's abs
ユーザー flippergoflippergo
提出日時 2024-09-24 15:17:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 121 ms / 2,000 ms
コード長 479 bytes
コンパイル時間 214 ms
コンパイル使用メモリ 82,844 KB
実行使用メモリ 83,156 KB
最終ジャッジ日時 2024-09-24 15:17:19
合計ジャッジ時間 4,807 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
61,324 KB
testcase_01 AC 45 ms
59,568 KB
testcase_02 AC 66 ms
71,504 KB
testcase_03 AC 40 ms
59,772 KB
testcase_04 AC 43 ms
62,516 KB
testcase_05 AC 48 ms
64,124 KB
testcase_06 AC 51 ms
65,100 KB
testcase_07 AC 48 ms
63,040 KB
testcase_08 AC 72 ms
72,348 KB
testcase_09 AC 71 ms
72,456 KB
testcase_10 AC 68 ms
71,608 KB
testcase_11 AC 71 ms
72,248 KB
testcase_12 AC 69 ms
71,696 KB
testcase_13 AC 102 ms
81,228 KB
testcase_14 AC 101 ms
81,580 KB
testcase_15 AC 105 ms
82,184 KB
testcase_16 AC 112 ms
82,216 KB
testcase_17 AC 101 ms
82,256 KB
testcase_18 AC 99 ms
81,520 KB
testcase_19 AC 99 ms
81,916 KB
testcase_20 AC 95 ms
80,564 KB
testcase_21 AC 103 ms
80,892 KB
testcase_22 AC 102 ms
81,340 KB
testcase_23 AC 102 ms
82,428 KB
testcase_24 AC 100 ms
83,156 KB
testcase_25 AC 102 ms
81,952 KB
testcase_26 AC 105 ms
82,796 KB
testcase_27 AC 121 ms
82,840 KB
testcase_28 AC 112 ms
81,628 KB
testcase_29 AC 102 ms
82,800 KB
testcase_30 AC 105 ms
82,292 KB
testcase_31 AC 107 ms
81,772 KB
testcase_32 AC 103 ms
82,200 KB
testcase_33 AC 100 ms
82,416 KB
testcase_34 AC 100 ms
82,268 KB
testcase_35 AC 103 ms
80,752 KB
testcase_36 AC 98 ms
81,364 KB
testcase_37 AC 100 ms
81,676 KB
testcase_38 AC 121 ms
81,464 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 998244353
N = int(input())
A = [0]+list(map(int,input().split()))
BASE = 10**4
dp = [[0 for _ in range(2*BASE+1)] for _ in range(N+1)]
dp[1][A[1]+BASE] = 1
dp[1][-A[1]+BASE] = 1
for i in range(2,N+1):
    for j in range(2*BASE+1):
        if j-A[i]>=0:
            dp[i][j] = (dp[i][j]+dp[i-1][j-A[i]])%MOD
        if j+A[i]<=2*BASE:
            dp[i][j] = (dp[i][j]+dp[i-1][j+A[i]])%MOD
ans = 0
for j in range(2*BASE+1):
    ans = (ans+dp[N][j]*abs(j-BASE))%MOD
print(ans)
0