結果

問題 No.2791 Beginner Contest
ユーザー karinohitokarinohito
提出日時 2024-09-19 21:57:08
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 340 bytes
コンパイル時間 1,853 ms
コンパイル使用メモリ 201,736 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-19 21:57:13
合計ジャッジ時間 3,603 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 3 ms
5,376 KB
testcase_11 RE -
testcase_12 AC 3 ms
5,376 KB
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 RE -
testcase_19 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;

int main() {

    cin.tie(nullptr);
    ios::sync_with_stdio(false);

    ll N,K,mod=998244353;
    cin>>N>>K;
    vector<ll> SDP(N+1,0);
    for(int i=0;i<K;i++)SDP[i]=1;
    for(int i=K;i<=N;i++){
        SDP[i]=(SDP[i-K]+SDP[i-1])%mod;
    } 
    cout<<SDP[N]<<endl;
}
0