結果

問題 No.2791 Beginner Contest
ユーザー KeiKei
提出日時 2024-06-21 22:52:47
言語 C++23(gcc13)
(gcc 13.2.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 480 bytes
コンパイル時間 3,147 ms
コンパイル使用メモリ 277,764 KB
実行使用メモリ 813,596 KB
最終ジャッジ日時 2024-06-21 22:52:53
合計ジャッジ時間 5,703 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include<bits/stdc++.h>
#include<atcoder/modint>
using namespace std;
using namespace atcoder;
using mint = modint998244353;
int main() {
  int N, K;
  cin >> N >> K;
  vector<mint> dp(max(N, K) + 1, 0);
  vector<mint> sdp(max(N, K) + 2, 0);
  //sdp[i] := dp[0] + dp[1] + ... + dp[i - 1];
  dp[0] = 1;
  for (int i = 1; i <= N + 1; i++) {
    sdp[i] += sdp[i - 1] + dp[i - 1];
    if (i - K + 1 > 0) {
      dp[i] += sdp[i - K + 1];
    }
  }
  cout << sdp[N + 1].val() << endl;
}
0