結果

問題 No.1645 AB's abs
ユーザー lloyzlloyz
提出日時 2021-12-18 20:25:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 91 ms / 2,000 ms
コード長 475 bytes
コンパイル時間 933 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 78,208 KB
最終ジャッジ日時 2024-09-15 13:54:15
合計ジャッジ時間 4,907 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
60,544 KB
testcase_01 AC 50 ms
59,648 KB
testcase_02 AC 63 ms
66,944 KB
testcase_03 AC 49 ms
59,776 KB
testcase_04 AC 50 ms
60,288 KB
testcase_05 AC 52 ms
60,416 KB
testcase_06 AC 55 ms
62,208 KB
testcase_07 AC 52 ms
60,416 KB
testcase_08 AC 67 ms
68,096 KB
testcase_09 AC 66 ms
68,096 KB
testcase_10 AC 65 ms
67,712 KB
testcase_11 AC 62 ms
67,584 KB
testcase_12 AC 66 ms
67,968 KB
testcase_13 AC 88 ms
77,312 KB
testcase_14 AC 81 ms
76,672 KB
testcase_15 AC 89 ms
77,568 KB
testcase_16 AC 85 ms
76,672 KB
testcase_17 AC 86 ms
77,312 KB
testcase_18 AC 84 ms
76,928 KB
testcase_19 AC 83 ms
77,696 KB
testcase_20 AC 83 ms
76,288 KB
testcase_21 AC 84 ms
77,184 KB
testcase_22 AC 85 ms
77,440 KB
testcase_23 AC 85 ms
77,696 KB
testcase_24 AC 88 ms
77,952 KB
testcase_25 AC 89 ms
77,824 KB
testcase_26 AC 86 ms
78,080 KB
testcase_27 AC 86 ms
77,824 KB
testcase_28 AC 88 ms
77,824 KB
testcase_29 AC 88 ms
77,696 KB
testcase_30 AC 89 ms
77,568 KB
testcase_31 AC 89 ms
78,208 KB
testcase_32 AC 90 ms
77,952 KB
testcase_33 AC 89 ms
77,312 KB
testcase_34 AC 90 ms
77,312 KB
testcase_35 AC 91 ms
77,312 KB
testcase_36 AC 89 ms
77,184 KB
testcase_37 AC 88 ms
77,440 KB
testcase_38 AC 81 ms
77,056 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