結果

問題 No.269 見栄っ張りの募金活動
ユーザー kusaf_kusaf_
提出日時 2024-09-01 03:23:08
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 12 ms / 5,000 ms
コード長 704 bytes
コンパイル時間 3,220 ms
コンパイル使用メモリ 250,636 KB
実行使用メモリ 11,776 KB
最終ジャッジ日時 2024-09-01 03:23:12
合計ジャッジ時間 4,389 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

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>(101, 0));
  for(int i = 0; i <= 100; i++) { r[0][i] = 1; }
  for(int i = 1; i <= N; i++) {
    for(int j = 1; j <= 100; 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