結果

問題 No.1645 AB's abs
ユーザー hir355hir355
提出日時 2021-08-13 21:30:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 76 ms / 2,000 ms
コード長 495 bytes
コンパイル時間 366 ms
コンパイル使用メモリ 82,484 KB
実行使用メモリ 71,680 KB
最終ジャッジ日時 2024-10-03 17:17:24
合計ジャッジ時間 3,971 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,968 KB
testcase_01 AC 38 ms
52,224 KB
testcase_02 AC 52 ms
62,720 KB
testcase_03 AC 38 ms
51,968 KB
testcase_04 AC 39 ms
52,096 KB
testcase_05 AC 43 ms
59,264 KB
testcase_06 AC 50 ms
59,904 KB
testcase_07 AC 40 ms
52,352 KB
testcase_08 AC 55 ms
63,360 KB
testcase_09 AC 55 ms
63,104 KB
testcase_10 AC 55 ms
63,104 KB
testcase_11 AC 54 ms
63,616 KB
testcase_12 AC 54 ms
63,744 KB
testcase_13 AC 70 ms
71,424 KB
testcase_14 AC 68 ms
70,016 KB
testcase_15 AC 70 ms
70,912 KB
testcase_16 AC 69 ms
70,016 KB
testcase_17 AC 70 ms
70,784 KB
testcase_18 AC 69 ms
70,656 KB
testcase_19 AC 70 ms
70,656 KB
testcase_20 AC 68 ms
69,632 KB
testcase_21 AC 69 ms
70,016 KB
testcase_22 AC 71 ms
70,528 KB
testcase_23 AC 70 ms
71,040 KB
testcase_24 AC 70 ms
71,296 KB
testcase_25 AC 71 ms
71,168 KB
testcase_26 AC 71 ms
71,040 KB
testcase_27 AC 70 ms
70,912 KB
testcase_28 AC 71 ms
71,424 KB
testcase_29 AC 73 ms
70,912 KB
testcase_30 AC 71 ms
71,424 KB
testcase_31 AC 72 ms
70,912 KB
testcase_32 AC 75 ms
71,168 KB
testcase_33 AC 76 ms
71,320 KB
testcase_34 AC 72 ms
71,040 KB
testcase_35 AC 71 ms
71,168 KB
testcase_36 AC 72 ms
71,296 KB
testcase_37 AC 70 ms
71,680 KB
testcase_38 AC 72 ms
70,912 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 998244353
MAX = 100
n = int(input())
a = list(map(int, input().split()))
s = sum(a)
dp = [[0] * (MAX * n + 1) for _ in range(n + 1)]
dp[0][0] = 1
for i in range(n):
    for j in range(MAX * n + 1):
        if j >= a[i]:
            dp[i + 1][j] += dp[i][j - a[i]]
        dp[i + 1][j] += dp[i][j]
        dp[i + 1][j] %= MOD
ans = 0
for i in range(MAX * n + 1):
    if 2 * i - s >= 0:
        ans += (2 * i - s) * dp[-1][i]
    else:
        ans -= (2 * i - s) * dp[-1][i]
print(ans % MOD)
0