結果

問題 No.2625 Bouns Ai
ユーザー hirayuu_ychirayuu_yc
提出日時 2024-02-09 21:26:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 461 ms / 2,000 ms
コード長 556 bytes
コンパイル時間 135 ms
コンパイル使用メモリ 82,528 KB
実行使用メモリ 220,672 KB
最終ジャッジ日時 2024-09-28 13:53:29
合計ジャッジ時間 8,353 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
60,544 KB
testcase_01 AC 46 ms
60,160 KB
testcase_02 AC 65 ms
69,120 KB
testcase_03 AC 151 ms
214,616 KB
testcase_04 AC 299 ms
217,344 KB
testcase_05 AC 155 ms
215,936 KB
testcase_06 AC 155 ms
216,576 KB
testcase_07 AC 150 ms
215,808 KB
testcase_08 AC 166 ms
217,600 KB
testcase_09 AC 152 ms
213,760 KB
testcase_10 AC 288 ms
217,216 KB
testcase_11 AC 49 ms
63,744 KB
testcase_12 AC 386 ms
218,624 KB
testcase_13 AC 439 ms
220,288 KB
testcase_14 AC 399 ms
219,904 KB
testcase_15 AC 390 ms
220,672 KB
testcase_16 AC 397 ms
220,416 KB
testcase_17 AC 394 ms
220,160 KB
testcase_18 AC 373 ms
220,032 KB
testcase_19 AC 401 ms
220,288 KB
testcase_20 AC 412 ms
220,032 KB
testcase_21 AC 387 ms
220,160 KB
testcase_22 AC 461 ms
219,904 KB
testcase_23 AC 446 ms
220,032 KB
testcase_24 AC 448 ms
220,104 KB
testcase_25 AC 386 ms
220,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit((1<<19)-1)
#import pypyjit
#pypyjit.set_param('max_unroll_recursion=-1')
input=sys.stdin.buffer.readline

MOD=998244353
sc=100000
N=int(input())
A=[0]+list(map(int,input().split()))
dp=[0]*(sc+1)
dp[0]=1
for i in range(N):
    ndp=[0]*(sc+1)
    ans=0
    for j in range(sc+1):
        if A[i+1]+j>sc:
            break
        if A[i]<=A[i+1]:
            ans+=dp[j]
        else:
            if j-(A[i]-A[i+1])>=0:
                ans+=dp[j-(A[i]-A[i+1])]
        ans%=MOD
        ndp[j]=ans
    dp=ndp
print(sum(dp)%MOD)
0