結果

問題 No.2944 Sigma Partition Problem
ユーザー haihamabossuhaihamabossu
提出日時 2024-10-18 23:42:01
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 137 ms / 4,000 ms
コード長 769 bytes
コンパイル時間 2,524 ms
コンパイル使用メモリ 203,068 KB
実行使用メモリ 67,572 KB
最終ジャッジ日時 2024-10-18 23:42:24
合計ジャッジ時間 6,766 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
67,528 KB
testcase_01 AC 132 ms
67,292 KB
testcase_02 AC 132 ms
67,472 KB
testcase_03 AC 131 ms
67,384 KB
testcase_04 AC 132 ms
67,384 KB
testcase_05 AC 135 ms
67,512 KB
testcase_06 AC 135 ms
67,384 KB
testcase_07 AC 134 ms
67,436 KB
testcase_08 AC 132 ms
67,532 KB
testcase_09 AC 132 ms
67,572 KB
testcase_10 AC 132 ms
67,444 KB
testcase_11 AC 132 ms
67,496 KB
testcase_12 AC 134 ms
67,400 KB
testcase_13 AC 136 ms
67,404 KB
testcase_14 AC 135 ms
67,420 KB
testcase_15 AC 133 ms
67,420 KB
testcase_16 AC 132 ms
67,484 KB
testcase_17 AC 132 ms
67,380 KB
testcase_18 AC 135 ms
67,460 KB
testcase_19 AC 134 ms
67,396 KB
testcase_20 AC 134 ms
67,496 KB
testcase_21 AC 137 ms
67,492 KB
testcase_22 AC 132 ms
67,432 KB
testcase_23 AC 130 ms
67,420 KB
testcase_24 AC 134 ms
67,480 KB
testcase_25 AC 135 ms
67,452 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <atcoder/modint>
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
using mint = atcoder::modint998244353;
#define rep(i, n) for (int i = 0; i < (int)(n); i++)

const int MX = 4040;
mint dp[MX + 10][MX + 10];

void precalc() {
  dp[0][0] = 1;
  rep(n, MX) rep(k, MX) if (n > 0 || k > 0) {
    if (k - 1 >= 0)
      dp[n][k] += dp[n][k - 1];
    if (n - k >= 0)
      dp[n][k] += dp[n - k][k];
  }
}

void solve() {
  ll t, n, k;
  cin >> t >> n >> k;
  mint ans = 0;
  rep(ki, k) if (n - ki - 1 >= 0) ans += dp[n - ki - 1][ki + 1];
  cout << ans.val() << '\n';
}

int main() {
  std::cin.tie(nullptr);
  std::ios_base::sync_with_stdio(false);
  precalc();
  int T = 1;
  cin >> T;
  for (int t = 0; t < T; t++) {
    solve();
  }
  return 0;
}
0