結果

問題 No.2791 Beginner Contest
ユーザー いまり💣🍠いまり💣🍠
提出日時 2024-06-21 22:01:06
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 189 bytes
コンパイル時間 314 ms
コンパイル使用メモリ 82,196 KB
実行使用メモリ 69,028 KB
最終ジャッジ日時 2024-06-21 22:01:12
合計ジャッジ時間 6,276 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
59,668 KB
testcase_01 AC 39 ms
52,808 KB
testcase_02 AC 1,660 ms
61,388 KB
testcase_03 AC 36 ms
52,928 KB
testcase_04 AC 36 ms
52,116 KB
testcase_05 AC 40 ms
52,608 KB
testcase_06 TLE -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

N, K = map(int, input().split())
MOD = 998244353

dp = [0] * (N + 1)
dp[0] = 1
for i in range(1, N + 1):
    for j in range(0, i - K + 1):
        dp[i] += dp[j] % MOD

print(sum(dp) % MOD)
0