結果

問題 No.1645 AB's abs
ユーザー lloyzlloyz
提出日時 2021-12-18 20:26:33
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 836 ms / 2,000 ms
コード長 494 bytes
コンパイル時間 81 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 39,296 KB
最終ジャッジ日時 2024-09-15 13:54:44
合計ジャッジ時間 20,407 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
11,264 KB
testcase_01 AC 43 ms
11,008 KB
testcase_02 AC 166 ms
16,000 KB
testcase_03 AC 43 ms
11,008 KB
testcase_04 AC 47 ms
11,264 KB
testcase_05 AC 53 ms
11,520 KB
testcase_06 AC 72 ms
12,160 KB
testcase_07 AC 51 ms
11,520 KB
testcase_08 AC 210 ms
17,920 KB
testcase_09 AC 214 ms
18,048 KB
testcase_10 AC 192 ms
17,152 KB
testcase_11 AC 198 ms
17,280 KB
testcase_12 AC 207 ms
17,280 KB
testcase_13 AC 673 ms
33,920 KB
testcase_14 AC 572 ms
30,848 KB
testcase_15 AC 642 ms
34,048 KB
testcase_16 AC 619 ms
33,152 KB
testcase_17 AC 657 ms
33,792 KB
testcase_18 AC 613 ms
31,872 KB
testcase_19 AC 645 ms
33,664 KB
testcase_20 AC 574 ms
30,720 KB
testcase_21 AC 610 ms
32,384 KB
testcase_22 AC 652 ms
33,536 KB
testcase_23 AC 645 ms
33,664 KB
testcase_24 AC 676 ms
34,304 KB
testcase_25 AC 659 ms
34,560 KB
testcase_26 AC 655 ms
33,920 KB
testcase_27 AC 643 ms
34,432 KB
testcase_28 AC 650 ms
34,176 KB
testcase_29 AC 655 ms
34,304 KB
testcase_30 AC 683 ms
34,816 KB
testcase_31 AC 656 ms
34,688 KB
testcase_32 AC 677 ms
34,816 KB
testcase_33 AC 829 ms
38,912 KB
testcase_34 AC 818 ms
39,168 KB
testcase_35 AC 826 ms
39,040 KB
testcase_36 AC 836 ms
39,040 KB
testcase_37 AC 828 ms
39,296 KB
testcase_38 AC 394 ms
27,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
A = list(map(int, input().split()))

mod = 998244353
dp = [[0 for _ in range(20001)] for _ in range(n + 1)]
dp[0][10000] = 1
for i in range(n):
    for j in range(20001):
        if dp[i][j] != 0:
            dp[i + 1][j - A[i]] += dp[i][j]
            dp[i + 1][j - A[i]] %= mod
            dp[i + 1][j + A[i]] += dp[i][j]
            dp[i + 1][j + A[i]] %= mod

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