結果

問題 No.2625 Bouns Ai
ユーザー ああいいああいい
提出日時 2024-02-12 11:38:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 614 ms / 2,000 ms
コード長 500 bytes
コンパイル時間 359 ms
コンパイル使用メモリ 82,416 KB
実行使用メモリ 251,180 KB
最終ジャッジ日時 2024-09-28 17:55:39
合計ジャッジ時間 13,233 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
62,544 KB
testcase_01 AC 37 ms
59,360 KB
testcase_02 AC 68 ms
76,672 KB
testcase_03 AC 442 ms
245,116 KB
testcase_04 AC 482 ms
247,372 KB
testcase_05 AC 415 ms
246,800 KB
testcase_06 AC 412 ms
247,624 KB
testcase_07 AC 413 ms
246,040 KB
testcase_08 AC 412 ms
247,316 KB
testcase_09 AC 416 ms
246,696 KB
testcase_10 AC 508 ms
248,476 KB
testcase_11 AC 48 ms
65,488 KB
testcase_12 AC 596 ms
248,132 KB
testcase_13 AC 566 ms
248,976 KB
testcase_14 AC 559 ms
249,436 KB
testcase_15 AC 563 ms
249,328 KB
testcase_16 AC 559 ms
248,940 KB
testcase_17 AC 566 ms
249,672 KB
testcase_18 AC 595 ms
249,448 KB
testcase_19 AC 589 ms
249,084 KB
testcase_20 AC 603 ms
248,996 KB
testcase_21 AC 578 ms
249,300 KB
testcase_22 AC 597 ms
250,880 KB
testcase_23 AC 590 ms
249,100 KB
testcase_24 AC 614 ms
251,180 KB
testcase_25 AC 588 ms
249,620 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int,input().split()))

P = 998244353
C = 10 ** 5 + 1
dp = [0] * C
for i in range(A[0],C):
    dp[i] = 1
for i in range(1,N):
    a = A[i]
    bef = A[i-1]
    nx = [0] * C
    S = [0] * C
    S[0] = dp[0]
    for j in range(1,C):
        S[j] = S[j-1] + dp[j]
        S[j] %= P
    for j in range(a,C):
        b = j - a
        v = min(bef + b,j)
        if v < bef:continue
        else:
            t = S[v]
            nx[j] = t
    dp = nx
S = sum(dp)
print(S % P)
0