結果

問題 No.1645 AB's abs
ユーザー rlangevinrlangevin
提出日時 2022-12-31 22:41:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 142 ms / 2,000 ms
コード長 491 bytes
コンパイル時間 882 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 81,448 KB
最終ジャッジ日時 2024-11-26 22:23:40
合計ジャッジ時間 5,473 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,888 KB
testcase_01 AC 36 ms
52,016 KB
testcase_02 AC 59 ms
70,664 KB
testcase_03 AC 37 ms
52,412 KB
testcase_04 AC 37 ms
53,496 KB
testcase_05 AC 43 ms
60,428 KB
testcase_06 AC 50 ms
64,524 KB
testcase_07 AC 45 ms
60,804 KB
testcase_08 AC 62 ms
72,116 KB
testcase_09 AC 60 ms
72,788 KB
testcase_10 AC 58 ms
71,152 KB
testcase_11 AC 60 ms
71,848 KB
testcase_12 AC 60 ms
72,596 KB
testcase_13 AC 97 ms
76,056 KB
testcase_14 AC 86 ms
75,728 KB
testcase_15 AC 99 ms
76,164 KB
testcase_16 AC 100 ms
76,268 KB
testcase_17 AC 100 ms
76,296 KB
testcase_18 AC 95 ms
76,088 KB
testcase_19 AC 97 ms
76,264 KB
testcase_20 AC 88 ms
76,124 KB
testcase_21 AC 90 ms
76,064 KB
testcase_22 AC 101 ms
76,244 KB
testcase_23 AC 98 ms
75,784 KB
testcase_24 AC 99 ms
76,024 KB
testcase_25 AC 99 ms
76,112 KB
testcase_26 AC 100 ms
75,984 KB
testcase_27 AC 98 ms
75,760 KB
testcase_28 AC 98 ms
75,840 KB
testcase_29 AC 94 ms
76,224 KB
testcase_30 AC 99 ms
76,368 KB
testcase_31 AC 96 ms
75,788 KB
testcase_32 AC 99 ms
75,836 KB
testcase_33 AC 127 ms
81,388 KB
testcase_34 AC 129 ms
81,004 KB
testcase_35 AC 132 ms
80,904 KB
testcase_36 AC 132 ms
80,968 KB
testcase_37 AC 129 ms
81,208 KB
testcase_38 AC 142 ms
81,448 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