結果

問題 No.2791 Beginner Contest
ユーザー titiatitia
提出日時 2024-06-21 22:11:49
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 90 ms / 2,000 ms
コード長 217 bytes
コンパイル時間 283 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 14,464 KB
最終ジャッジ日時 2024-06-21 22:11:52
合計ジャッジ時間 2,195 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,624 KB
testcase_01 AC 29 ms
10,496 KB
testcase_02 AC 47 ms
11,904 KB
testcase_03 AC 27 ms
10,496 KB
testcase_04 AC 27 ms
10,496 KB
testcase_05 AC 25 ms
10,496 KB
testcase_06 AC 68 ms
13,056 KB
testcase_07 AC 33 ms
11,264 KB
testcase_08 AC 34 ms
11,008 KB
testcase_09 AC 78 ms
14,080 KB
testcase_10 AC 85 ms
14,080 KB
testcase_11 AC 62 ms
11,392 KB
testcase_12 AC 90 ms
14,464 KB
testcase_13 AC 58 ms
11,392 KB
testcase_14 AC 42 ms
10,752 KB
testcase_15 AC 75 ms
11,392 KB
testcase_16 AC 29 ms
10,496 KB
testcase_17 AC 29 ms
10,496 KB
testcase_18 AC 64 ms
11,392 KB
testcase_19 AC 63 ms
11,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline


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

DP=[0]*(N+1)
DP[0]=1
for i in range(N+1):
    DP[i]=(DP[i-1]+DP[i])%mod
    if i+K<=N:
        DP[i+K]+=DP[i]
    
print(DP[-1]%mod)
0