結果

問題 No.2625 Bouns Ai
ユーザー 👑 rin204rin204
提出日時 2024-02-10 00:41:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 429 ms / 2,000 ms
コード長 350 bytes
コンパイル時間 213 ms
コンパイル使用メモリ 82,484 KB
実行使用メモリ 237,664 KB
最終ジャッジ日時 2024-09-28 16:47:11
合計ジャッジ時間 9,651 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
63,724 KB
testcase_01 AC 37 ms
61,020 KB
testcase_02 AC 52 ms
75,036 KB
testcase_03 AC 429 ms
235,032 KB
testcase_04 AC 384 ms
233,880 KB
testcase_05 AC 414 ms
235,076 KB
testcase_06 AC 409 ms
235,212 KB
testcase_07 AC 403 ms
234,240 KB
testcase_08 AC 412 ms
235,240 KB
testcase_09 AC 412 ms
234,772 KB
testcase_10 AC 378 ms
234,312 KB
testcase_11 AC 46 ms
66,984 KB
testcase_12 AC 369 ms
235,312 KB
testcase_13 AC 368 ms
236,900 KB
testcase_14 AC 370 ms
234,756 KB
testcase_15 AC 368 ms
235,828 KB
testcase_16 AC 368 ms
235,792 KB
testcase_17 AC 388 ms
235,176 KB
testcase_18 AC 382 ms
234,872 KB
testcase_19 AC 372 ms
235,252 KB
testcase_20 AC 379 ms
235,072 KB
testcase_21 AC 373 ms
234,904 KB
testcase_22 AC 382 ms
237,216 KB
testcase_23 AC 378 ms
236,208 KB
testcase_24 AC 376 ms
236,224 KB
testcase_25 AC 384 ms
237,664 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 998244353

M = 10**5
n = int(input())
A = list(map(int, input().split()))

dp = [0] * (M + 1)
dp[0] = 1
b = 0
for a in A:
    for i in range(M):
        dp[i + 1] = (dp[i] + dp[i + 1]) % MOD
    add = max(0, b - a)
    dp = [0] * add + dp[: M + 1 - add]
    for i in range(M - a + 1, M + 1):
        dp[i] = 0

    b = a


print(sum(dp) % MOD)
0