結果

問題 No.1645 AB's abs
ユーザー kept1994kept1994
提出日時 2022-05-06 02:48:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 134 ms / 2,000 ms
コード長 590 bytes
コンパイル時間 189 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 103,680 KB
最終ジャッジ日時 2024-07-05 04:57:28
合計ジャッジ時間 5,352 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
59,648 KB
testcase_01 AC 45 ms
59,776 KB
testcase_02 AC 56 ms
64,640 KB
testcase_03 AC 46 ms
59,392 KB
testcase_04 AC 45 ms
59,520 KB
testcase_05 AC 46 ms
60,032 KB
testcase_06 AC 47 ms
61,440 KB
testcase_07 AC 46 ms
59,904 KB
testcase_08 AC 60 ms
66,304 KB
testcase_09 AC 57 ms
66,560 KB
testcase_10 AC 55 ms
65,408 KB
testcase_11 AC 56 ms
65,664 KB
testcase_12 AC 55 ms
65,920 KB
testcase_13 AC 120 ms
101,248 KB
testcase_14 AC 99 ms
90,752 KB
testcase_15 AC 131 ms
101,888 KB
testcase_16 AC 115 ms
99,200 KB
testcase_17 AC 118 ms
100,736 KB
testcase_18 AC 114 ms
98,048 KB
testcase_19 AC 119 ms
101,376 KB
testcase_20 AC 98 ms
89,600 KB
testcase_21 AC 128 ms
98,560 KB
testcase_22 AC 118 ms
100,480 KB
testcase_23 AC 123 ms
101,888 KB
testcase_24 AC 123 ms
102,272 KB
testcase_25 AC 124 ms
102,656 KB
testcase_26 AC 123 ms
102,400 KB
testcase_27 AC 124 ms
102,656 KB
testcase_28 AC 123 ms
102,528 KB
testcase_29 AC 121 ms
102,272 KB
testcase_30 AC 122 ms
102,784 KB
testcase_31 AC 122 ms
102,528 KB
testcase_32 AC 121 ms
103,040 KB
testcase_33 AC 128 ms
103,552 KB
testcase_34 AC 128 ms
103,168 KB
testcase_35 AC 134 ms
103,680 KB
testcase_36 AC 130 ms
103,296 KB
testcase_37 AC 129 ms
103,680 KB
testcase_38 AC 91 ms
85,504 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
import sys
MOD = 998244353
def main():
    N = int(input())
    A = list(map(int, input().split()))
    dp = [[0 for _ in range(20010)] for _ in range(N + 1)]
    offset = 10000
    dp[0][offset] = 1
    for i in range(N):
        for j in range(20010):
            if not dp[i][j]:
                continue
            dp[i + 1][j + A[i]] += dp[i][j]
            dp[i + 1][j - A[i]] += dp[i][j]
    ans = 0
    for j in range(20010):
        ans += abs(j - offset) * dp[-1][j]
        ans %= MOD
    print(ans % MOD)
    return

if __name__ == '__main__':
    main()
0