結果

問題 No.2625 Bouns Ai
ユーザー LyricalMaestroLyricalMaestro
提出日時 2024-12-06 00:01:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 632 ms / 2,000 ms
コード長 788 bytes
コンパイル時間 279 ms
コンパイル使用メモリ 82,816 KB
実行使用メモリ 246,912 KB
最終ジャッジ日時 2024-12-06 00:01:24
合計ジャッジ時間 14,173 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 59 ms
63,616 KB
testcase_01 AC 54 ms
62,336 KB
testcase_02 AC 79 ms
75,904 KB
testcase_03 AC 458 ms
243,456 KB
testcase_04 AC 507 ms
244,352 KB
testcase_05 AC 426 ms
244,608 KB
testcase_06 AC 431 ms
244,096 KB
testcase_07 AC 426 ms
244,224 KB
testcase_08 AC 429 ms
245,504 KB
testcase_09 AC 426 ms
243,200 KB
testcase_10 AC 505 ms
244,480 KB
testcase_11 AC 62 ms
66,304 KB
testcase_12 AC 593 ms
245,504 KB
testcase_13 AC 626 ms
246,528 KB
testcase_14 AC 597 ms
246,784 KB
testcase_15 AC 597 ms
246,400 KB
testcase_16 AC 590 ms
246,784 KB
testcase_17 AC 593 ms
246,912 KB
testcase_18 AC 577 ms
246,656 KB
testcase_19 AC 576 ms
246,656 KB
testcase_20 AC 564 ms
246,912 KB
testcase_21 AC 588 ms
246,912 KB
testcase_22 AC 588 ms
246,784 KB
testcase_23 AC 632 ms
246,912 KB
testcase_24 AC 567 ms
246,912 KB
testcase_25 AC 592 ms
246,784 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

## https://yukicoder.me/problems/no/2625

MOD = 998244353
MAX = 10 ** 5

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

    dp = [0] * (MAX + 1)
    dp[0] = 1
    cum_dp = [1] * (MAX + 1)

    prev = 0
    for i in range(N):
        new_dp = [0] * (MAX + 1)

        for b in range(MAX - A[i] + 1):
            if b - max(0, prev - A[i]) >= 0:
                new_dp[b] = cum_dp[b - max(0, prev - A[i])]
        dp = new_dp

        cum_dp = [0] * (MAX + 1)
        a = 0
        for b in range(MAX + 1):
            a += dp[b]
            a %= MOD
            cum_dp[b] = a    
        prev = A[i]
    
    answer = 0
    for b in range(MAX + 1):
        answer += dp[b]
        answer %= MOD
    print(answer)

    






if __name__ == "__main__":
    main()
0