結果

問題 No.2625 Bouns Ai
ユーザー nikoro256nikoro256
提出日時 2024-02-09 22:34:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 687 ms / 2,000 ms
コード長 603 bytes
コンパイル時間 212 ms
コンパイル使用メモリ 82,132 KB
実行使用メモリ 228,376 KB
最終ジャッジ日時 2024-09-28 15:47:16
合計ジャッジ時間 14,317 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
63,604 KB
testcase_01 AC 41 ms
60,728 KB
testcase_02 AC 80 ms
73,964 KB
testcase_03 AC 434 ms
221,216 KB
testcase_04 AC 594 ms
222,512 KB
testcase_05 AC 419 ms
222,976 KB
testcase_06 AC 419 ms
222,528 KB
testcase_07 AC 424 ms
221,492 KB
testcase_08 AC 422 ms
223,416 KB
testcase_09 AC 415 ms
220,464 KB
testcase_10 AC 598 ms
223,256 KB
testcase_11 AC 55 ms
67,260 KB
testcase_12 AC 661 ms
224,508 KB
testcase_13 AC 672 ms
226,772 KB
testcase_14 AC 664 ms
226,324 KB
testcase_15 AC 660 ms
227,168 KB
testcase_16 AC 671 ms
227,128 KB
testcase_17 AC 668 ms
227,088 KB
testcase_18 AC 641 ms
227,128 KB
testcase_19 AC 683 ms
227,000 KB
testcase_20 AC 687 ms
227,120 KB
testcase_21 AC 672 ms
226,516 KB
testcase_22 AC 674 ms
228,136 KB
testcase_23 AC 647 ms
227,532 KB
testcase_24 AC 683 ms
228,376 KB
testcase_25 AC 671 ms
226,836 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
A=list(map(int,input().split()))
'''
dp[~番目まで見て][仮のスコアが--]
'''
p=998244353
lim=10**5
dp=[[0 for _ in range(lim+1)] for _ in range(N)]
dp[0]=[1 for _ in range(lim+1)]
for i in range(N-1):
    for j in range(lim+1):
        if j+A[i]>lim:
            continue
        move=max(j+A[i]-A[i+1],j)
        if j<=lim:
            dp[i+1][move]+=dp[i][j]
            dp[i+1][move]%=p
    for j in range(1,lim+1):
        dp[i+1][j]+=dp[i+1][j-1]
        dp[i+1][j]%=p
ans=0
for j in range(lim+1):
    if j+A[-1]>lim:
        break
    ans+=dp[-1][j]
    ans%=p
print(ans)
0