結果

問題 No.2791 Beginner Contest
ユーザー hotaosahotaosa
提出日時 2024-06-22 00:26:47
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 340 bytes
コンパイル時間 976 ms
コンパイル使用メモリ 86,696 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-22 00:26:51
合計ジャッジ時間 3,254 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <iostream>
#include <vector>

using namespace std;
constexpr int MOD = 998244353;

int main() {
  int n, k;
  cin >> n >> k;

  vector<int> dp(n + 1, 0);
  for (int i = 0; i < k; ++i) dp[i] = 1;

  for (int i = k; i <= n; ++i) {
    dp[i] = ((dp[i] + dp[i - k]) % MOD + dp[i - 1]) % MOD;
  }

  cout << dp[n] << endl;
  return 0;
}
0