結果

問題 No.1645 AB's abs
ユーザー rlangevinrlangevin
提出日時 2022-12-31 22:41:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 145 ms / 2,000 ms
コード長 491 bytes
コンパイル時間 139 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 81,408 KB
最終ジャッジ日時 2024-05-05 04:34:16
合計ジャッジ時間 4,996 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,224 KB
testcase_01 AC 35 ms
52,224 KB
testcase_02 AC 62 ms
69,248 KB
testcase_03 AC 38 ms
52,480 KB
testcase_04 AC 37 ms
52,096 KB
testcase_05 AC 46 ms
60,288 KB
testcase_06 AC 54 ms
64,256 KB
testcase_07 AC 45 ms
60,288 KB
testcase_08 AC 64 ms
71,936 KB
testcase_09 AC 66 ms
72,704 KB
testcase_10 AC 64 ms
70,400 KB
testcase_11 AC 64 ms
71,936 KB
testcase_12 AC 64 ms
71,424 KB
testcase_13 AC 106 ms
76,268 KB
testcase_14 AC 92 ms
76,348 KB
testcase_15 AC 106 ms
76,416 KB
testcase_16 AC 106 ms
76,416 KB
testcase_17 AC 106 ms
76,160 KB
testcase_18 AC 98 ms
76,416 KB
testcase_19 AC 104 ms
76,288 KB
testcase_20 AC 93 ms
76,288 KB
testcase_21 AC 98 ms
76,388 KB
testcase_22 AC 104 ms
76,160 KB
testcase_23 AC 102 ms
76,160 KB
testcase_24 AC 103 ms
76,288 KB
testcase_25 AC 103 ms
76,416 KB
testcase_26 AC 102 ms
76,156 KB
testcase_27 AC 103 ms
76,288 KB
testcase_28 AC 103 ms
76,416 KB
testcase_29 AC 100 ms
76,160 KB
testcase_30 AC 108 ms
76,544 KB
testcase_31 AC 104 ms
76,416 KB
testcase_32 AC 105 ms
76,292 KB
testcase_33 AC 136 ms
81,408 KB
testcase_34 AC 138 ms
81,348 KB
testcase_35 AC 136 ms
81,280 KB
testcase_36 AC 138 ms
81,280 KB
testcase_37 AC 135 ms
81,152 KB
testcase_38 AC 145 ms
81,280 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int, input().split()))
mod = 998244353
geta = sum(A) + 5

pre = [0] * (geta * 2)
pre[geta] = 1
for i in range(N):
    dp = [0] * (geta * 2)
    for j in range(2 * geta):
        for k in range(-1, 2, 2):
            if 0 <= j + A[i] * k <= 2 * geta - 1:
                dp[j + A[i] * k] += pre[j]
                dp[j + A[i] * k] %= mod
    pre, dp = dp, pre
    
ans = 0
for i in range(2 * geta):
    ans += pre[i] * abs(geta - i)
    ans %= mod
print(ans)    
0