結果

問題 No.269 見栄っ張りの募金活動
ユーザー kusaf_kusaf_
提出日時 2024-09-01 03:16:20
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
MLE  
実行時間 -
コード長 702 bytes
コンパイル時間 3,070 ms
コンパイル使用メモリ 252,320 KB
実行使用メモリ 814,976 KB
最終ジャッジ日時 2024-09-01 03:16:27
合計ジャッジ時間 5,849 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

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

template<typename T> vector<vector<T>> Partition(int N) {
  vector<vector<T>> r(N + 1, vector<T>(N + 1, 0));
  for(int i = 0; i <= N; i++) { r[0][i] = 1; }
  for(int i = 1; i <= N; i++) {
    for(int j = 1; j <= N; j++) { r[i][j] = r[i][j - 1] + (i - j >= 0 ? r[i - j][j] : 0); }
  }
  return r;
}

int main() {
  ios::sync_with_stdio(false);
  cin.tie(nullptr);

  ll N, S, K;
  cin >> N >> S >> K;

  S -= K * N * (N - 1) / 2;

  if(S < 0) {
    cout << 0 << "\n";
    return 0;
  }

  auto p = Partition<mint>(S);
  cout << p[S][N].val() << "\n";
}
0