結果

問題 No.1645 AB's abs
ユーザー wolgnikwolgnik
提出日時 2021-08-13 21:31:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 112 ms / 2,000 ms
コード長 484 bytes
コンパイル時間 438 ms
コンパイル使用メモリ 82,160 KB
実行使用メモリ 100,608 KB
最終ジャッジ日時 2024-10-03 17:22:02
合計ジャッジ時間 5,053 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,096 KB
testcase_01 AC 38 ms
51,968 KB
testcase_02 AC 63 ms
70,016 KB
testcase_03 AC 37 ms
51,968 KB
testcase_04 AC 39 ms
52,864 KB
testcase_05 AC 47 ms
60,672 KB
testcase_06 AC 56 ms
65,408 KB
testcase_07 AC 49 ms
61,056 KB
testcase_08 AC 69 ms
71,808 KB
testcase_09 AC 67 ms
71,680 KB
testcase_10 AC 66 ms
70,656 KB
testcase_11 AC 66 ms
70,784 KB
testcase_12 AC 66 ms
71,040 KB
testcase_13 AC 105 ms
97,280 KB
testcase_14 AC 99 ms
94,080 KB
testcase_15 AC 103 ms
97,920 KB
testcase_16 AC 101 ms
94,848 KB
testcase_17 AC 103 ms
97,152 KB
testcase_18 AC 102 ms
94,464 KB
testcase_19 AC 106 ms
97,408 KB
testcase_20 AC 101 ms
92,928 KB
testcase_21 AC 101 ms
94,976 KB
testcase_22 AC 103 ms
96,768 KB
testcase_23 AC 106 ms
98,560 KB
testcase_24 AC 106 ms
98,816 KB
testcase_25 AC 106 ms
98,176 KB
testcase_26 AC 105 ms
98,944 KB
testcase_27 AC 107 ms
98,560 KB
testcase_28 AC 107 ms
98,688 KB
testcase_29 AC 105 ms
98,432 KB
testcase_30 AC 108 ms
98,816 KB
testcase_31 AC 105 ms
98,944 KB
testcase_32 AC 106 ms
98,560 KB
testcase_33 AC 104 ms
97,920 KB
testcase_34 AC 112 ms
100,608 KB
testcase_35 AC 104 ms
98,304 KB
testcase_36 AC 106 ms
98,176 KB
testcase_37 AC 105 ms
98,304 KB
testcase_38 AC 101 ms
97,024 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
N = int(input())
a = list(map(int, input().split()))
mod = 998244353

mx = max(a)
m = mx * N
ln = mx * N * 2 + 1
dp = [0] * ln
dp[m] = 1

for x in a:
  dp2 = [0] * ln
  for i in range(ln):
    if i - x in range(ln):
      dp2[i - x] += dp[i]
      dp2[i - x] %= mod
    if i + x in range(ln):
      dp2[i + x] += dp[i]
      dp2[i + x] %= mod
  dp = dp2[: ]

res = 0
for i in range(ln):
  x = i - m
  res += abs(x * dp[i])
  res %= mod
print(res)
0