結果

問題 No.2625 Bouns Ai
ユーザー rlangevinrlangevin
提出日時 2024-02-09 22:36:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 425 ms / 2,000 ms
コード長 470 bytes
コンパイル時間 489 ms
コンパイル使用メモリ 82,408 KB
実行使用メモリ 223,388 KB
最終ジャッジ日時 2024-09-28 15:48:44
合計ジャッジ時間 10,267 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
63,260 KB
testcase_01 AC 40 ms
59,592 KB
testcase_02 AC 62 ms
69,864 KB
testcase_03 AC 392 ms
219,912 KB
testcase_04 AC 406 ms
220,164 KB
testcase_05 AC 394 ms
219,888 KB
testcase_06 AC 398 ms
220,748 KB
testcase_07 AC 391 ms
219,440 KB
testcase_08 AC 410 ms
220,576 KB
testcase_09 AC 402 ms
219,992 KB
testcase_10 AC 412 ms
220,260 KB
testcase_11 AC 48 ms
64,416 KB
testcase_12 AC 410 ms
220,556 KB
testcase_13 AC 420 ms
222,516 KB
testcase_14 AC 425 ms
222,348 KB
testcase_15 AC 407 ms
223,388 KB
testcase_16 AC 414 ms
221,928 KB
testcase_17 AC 411 ms
223,160 KB
testcase_18 AC 407 ms
221,476 KB
testcase_19 AC 411 ms
221,372 KB
testcase_20 AC 415 ms
221,660 KB
testcase_21 AC 417 ms
220,956 KB
testcase_22 AC 416 ms
221,332 KB
testcase_23 AC 408 ms
221,444 KB
testcase_24 AC 418 ms
221,268 KB
testcase_25 AC 421 ms
221,832 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int, input().split()))
M = 10**5
pre = [0] * (M + 2)
for i in range(A[0], M + 1):
    pre[i] = 1
    
mod = 998244353
for i in range(1, N):
    dp = [0] * (M + 2)
    da = max(0, A[i] - A[i - 1])
    for j in range(M + 1):
        mi = min(M + 1 - j, da)
        dp[j + mi] += pre[j]
        dp[j + mi] %= mod
    for j in range(1, M + 1):
        dp[j] += dp[j - 1]
        dp[j] %= mod
    dp, pre = pre, dp
    
print(sum(pre[:M+1])%mod)
0