結果

問題 No.2625 Bouns Ai
ユーザー PNJPNJ
提出日時 2024-02-09 22:27:23
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 812 bytes
コンパイル時間 156 ms
コンパイル使用メモリ 82,360 KB
実行使用メモリ 229,108 KB
最終ジャッジ日時 2024-09-28 15:41:48
合計ジャッジ時間 14,749 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
62,028 KB
testcase_01 AC 33 ms
53,628 KB
testcase_02 AC 85 ms
76,896 KB
testcase_03 AC 348 ms
218,880 KB
testcase_04 WA -
testcase_05 AC 358 ms
222,968 KB
testcase_06 AC 356 ms
222,396 KB
testcase_07 AC 352 ms
221,648 KB
testcase_08 AC 353 ms
222,284 KB
testcase_09 AC 350 ms
219,800 KB
testcase_10 AC 718 ms
226,576 KB
testcase_11 AC 51 ms
64,700 KB
testcase_12 AC 725 ms
226,856 KB
testcase_13 AC 729 ms
228,200 KB
testcase_14 AC 721 ms
227,152 KB
testcase_15 AC 721 ms
226,712 KB
testcase_16 AC 728 ms
227,200 KB
testcase_17 AC 731 ms
226,588 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
  for s in range(S+1):
    if s + d > S:
      break
    ss = s + d
    sss = S - A[n+1] + 1
    if ss >= sss:
      break
    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