結果

問題 No.2625 Bouns Ai
ユーザー PNJPNJ
提出日時 2024-02-09 22:29:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 702 ms / 2,000 ms
コード長 764 bytes
コンパイル時間 169 ms
コンパイル使用メモリ 82,608 KB
実行使用メモリ 226,844 KB
最終ジャッジ日時 2024-09-28 15:43:08
合計ジャッジ時間 14,581 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
62,460 KB
testcase_01 AC 32 ms
53,084 KB
testcase_02 AC 84 ms
76,488 KB
testcase_03 AC 363 ms
219,436 KB
testcase_04 AC 682 ms
226,824 KB
testcase_05 AC 356 ms
221,188 KB
testcase_06 AC 365 ms
222,208 KB
testcase_07 AC 362 ms
220,268 KB
testcase_08 AC 355 ms
222,036 KB
testcase_09 AC 366 ms
220,320 KB
testcase_10 AC 685 ms
224,028 KB
testcase_11 AC 49 ms
65,508 KB
testcase_12 AC 683 ms
224,376 KB
testcase_13 AC 679 ms
226,356 KB
testcase_14 AC 702 ms
225,628 KB
testcase_15 AC 698 ms
225,452 KB
testcase_16 AC 693 ms
225,632 KB
testcase_17 AC 678 ms
225,700 KB
testcase_18 AC 689 ms
225,572 KB
testcase_19 AC 694 ms
226,844 KB
testcase_20 AC 697 ms
225,700 KB
testcase_21 AC 694 ms
226,484 KB
testcase_22 AC 684 ms
225,896 KB
testcase_23 AC 691 ms
226,736 KB
testcase_24 AC 696 ms
225,640 KB
testcase_25 AC 695 ms
226,412 KB
権限があれば一括ダウンロードができます

ソースコード

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 + 2)] 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
  sss = S - A[n+1] + 1
  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
  for s in range(S+1):
    if s + d >= sss:
      break
    ss = s + d
    dp[n+1][ss] += dp[n][s]
    dp[n+1][ss] %= mod
    dp[n+1][sss] -= dp[n][s]
    dp[n+1][sss] %= mod
ans = 0
for s in range(S+1):
  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