結果

問題 No.1645 AB's abs
ユーザー puznekopuzneko
提出日時 2021-10-24 23:03:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 115 ms / 2,000 ms
コード長 515 bytes
コンパイル時間 173 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 81,408 KB
最終ジャッジ日時 2024-10-02 05:28:28
合計ジャッジ時間 5,211 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
52,096 KB
testcase_01 AC 43 ms
52,096 KB
testcase_02 AC 71 ms
66,432 KB
testcase_03 AC 42 ms
51,968 KB
testcase_04 AC 42 ms
51,840 KB
testcase_05 AC 49 ms
59,648 KB
testcase_06 AC 55 ms
62,464 KB
testcase_07 AC 51 ms
60,160 KB
testcase_08 AC 73 ms
67,712 KB
testcase_09 AC 73 ms
67,584 KB
testcase_10 AC 70 ms
66,688 KB
testcase_11 AC 69 ms
66,944 KB
testcase_12 AC 71 ms
67,328 KB
testcase_13 AC 112 ms
80,640 KB
testcase_14 AC 106 ms
78,464 KB
testcase_15 AC 112 ms
80,256 KB
testcase_16 AC 107 ms
79,104 KB
testcase_17 AC 110 ms
80,256 KB
testcase_18 AC 106 ms
78,976 KB
testcase_19 AC 111 ms
80,512 KB
testcase_20 AC 103 ms
77,952 KB
testcase_21 AC 107 ms
79,132 KB
testcase_22 AC 111 ms
80,128 KB
testcase_23 AC 114 ms
81,280 KB
testcase_24 AC 111 ms
81,408 KB
testcase_25 AC 113 ms
81,024 KB
testcase_26 AC 109 ms
81,280 KB
testcase_27 AC 111 ms
81,280 KB
testcase_28 AC 108 ms
80,896 KB
testcase_29 AC 112 ms
80,768 KB
testcase_30 AC 108 ms
80,896 KB
testcase_31 AC 109 ms
81,408 KB
testcase_32 AC 115 ms
81,152 KB
testcase_33 AC 112 ms
80,256 KB
testcase_34 AC 111 ms
80,640 KB
testcase_35 AC 109 ms
80,512 KB
testcase_36 AC 110 ms
80,512 KB
testcase_37 AC 109 ms
80,496 KB
testcase_38 AC 111 ms
80,256 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from sys import stdin
n, *a = map(int, stdin.read().split())
p = 998244353
largenum = n * max(a) + 1
maxind = largenum * 2
dp = [[0 for i in range(maxind + 1)] for j in range(n+1)]
dp[0][largenum] = 1

for i in range(n):
    for j in range(maxind + 1):
        if j >= a[i]:
            dp[i+1][j] = dp[i][j-a[i]]
        if j <= maxind - a[i]:
            dp[i+1][j] = (dp[i+1][j] + dp[i][j+a[i]]) % p

ans = 0
for i in range(maxind+1):
    ans = (ans + abs(i-largenum) * dp[n][i] % p) % p
print("{}".format(ans))
0