結果

問題 No.1645 AB's abs
ユーザー ShirotsumeShirotsume
提出日時 2022-02-01 17:55:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 153 ms / 2,000 ms
コード長 377 bytes
コンパイル時間 158 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 121,088 KB
最終ジャッジ日時 2024-06-11 09:11:37
合計ジャッジ時間 6,877 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 104 ms
116,352 KB
testcase_01 AC 96 ms
113,024 KB
testcase_02 AC 123 ms
120,448 KB
testcase_03 AC 95 ms
113,408 KB
testcase_04 AC 110 ms
115,968 KB
testcase_05 AC 108 ms
116,608 KB
testcase_06 AC 111 ms
118,272 KB
testcase_07 AC 108 ms
116,352 KB
testcase_08 AC 130 ms
120,960 KB
testcase_09 AC 127 ms
120,576 KB
testcase_10 AC 125 ms
120,576 KB
testcase_11 AC 125 ms
120,448 KB
testcase_12 AC 129 ms
120,448 KB
testcase_13 AC 147 ms
120,320 KB
testcase_14 AC 146 ms
120,960 KB
testcase_15 AC 151 ms
120,576 KB
testcase_16 AC 146 ms
120,320 KB
testcase_17 AC 146 ms
120,576 KB
testcase_18 AC 146 ms
120,704 KB
testcase_19 AC 146 ms
120,448 KB
testcase_20 AC 142 ms
120,448 KB
testcase_21 AC 144 ms
120,320 KB
testcase_22 AC 149 ms
120,576 KB
testcase_23 AC 151 ms
120,448 KB
testcase_24 AC 150 ms
120,448 KB
testcase_25 AC 149 ms
121,088 KB
testcase_26 AC 149 ms
120,448 KB
testcase_27 AC 148 ms
120,704 KB
testcase_28 AC 149 ms
120,576 KB
testcase_29 AC 149 ms
120,960 KB
testcase_30 AC 151 ms
120,576 KB
testcase_31 AC 148 ms
120,448 KB
testcase_32 AC 153 ms
120,576 KB
testcase_33 AC 146 ms
120,192 KB
testcase_34 AC 144 ms
120,064 KB
testcase_35 AC 144 ms
120,076 KB
testcase_36 AC 146 ms
120,064 KB
testcase_37 AC 147 ms
120,064 KB
testcase_38 AC 146 ms
119,936 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

dp = [[0] * 60000 for _ in range(110)]
dp[0][0] = 1
n = int(input())
a = list(map(int,input().split()))
mod = 998244353
for i in range(n):
    for j in range(-10010, 10010):
        dp[i + 1][j + a[i]] += dp[i][j]
        dp[i + 1][j - a[i]] += dp[i][j]
        dp[i + 1][j] %= mod
ans = 0

for j in range(-10010, 10010):
    ans += abs(j) * dp[n][j]
    ans %= mod
print(ans)
0