結果

問題 No.2625 Bouns Ai
ユーザー PNJPNJ
提出日時 2024-02-09 22:24:14
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 801 bytes
コンパイル時間 194 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 230,856 KB
最終ジャッジ日時 2024-09-28 15:38:18
合計ジャッジ時間 14,133 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
62,296 KB
testcase_01 AC 33 ms
52,340 KB
testcase_02 AC 80 ms
76,880 KB
testcase_03 AC 377 ms
219,056 KB
testcase_04 WA -
testcase_05 AC 371 ms
222,076 KB
testcase_06 AC 392 ms
222,564 KB
testcase_07 AC 374 ms
222,408 KB
testcase_08 AC 390 ms
221,968 KB
testcase_09 AC 390 ms
219,500 KB
testcase_10 AC 652 ms
225,476 KB
testcase_11 AC 52 ms
67,984 KB
testcase_12 AC 672 ms
224,604 KB
testcase_13 AC 667 ms
227,496 KB
testcase_14 AC 693 ms
227,216 KB
testcase_15 AC 688 ms
227,184 KB
testcase_16 AC 677 ms
228,772 KB
testcase_17 AC 681 ms
227,864 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

def Map():
  return list(map(int,input().split()))

mod = 998244353
N = int(input())
A = Map()
S = 10**5
if N == 1:
  print(S + 1 - A[0])
  exit()
dp = [[0 for j in range(S + 1)] for i in range(N)]
for s in range(S + 1):
  if s + A[0] > S:
    break
  dp[0][s] += 1

for n in range(N-1):
  d = 0
  if A[n] - A[n+1] > 0:
    d += A[n] - A[n+1]
  for s in range(S+1):
    if n > 0 and s < S:
      dp[n][s+1] += dp[n][s]
      dp[n][s+1] %= mod
    if s + d > S:
      continue
    ss = s + d
    if ss + A[n+1] > S:
      continue
    sss = S - A[n+1] + 1
    dp[n+1][ss] += dp[n][s]
    dp[n+1][ss] %= mod
    if sss <= S:
      dp[n+1][sss] -= dp[n][s]
      dp[n+1][sss] %= mod
ans = 0
for s in range(S):
  dp[N-1][s+1] += dp[N-1][s]
  dp[N-1][s+1] %= mod
  ans += dp[N-1][s]
  ans %= mod
print(ans)
0