結果

問題 No.269 見栄っ張りの募金活動
ユーザー sutu1sutu1
提出日時 2024-09-13 15:04:02
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 51 ms / 5,000 ms
コード長 667 bytes
コンパイル時間 2,889 ms
コンパイル使用メモリ 243,588 KB
実行使用メモリ 35,864 KB
最終ジャッジ日時 2024-09-13 15:04:07
合計ジャッジ時間 4,264 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 11 ms
34,936 KB
testcase_01 AC 10 ms
35,020 KB
testcase_02 AC 12 ms
35,012 KB
testcase_03 AC 12 ms
34,980 KB
testcase_04 AC 24 ms
35,780 KB
testcase_05 AC 10 ms
34,920 KB
testcase_06 AC 10 ms
34,912 KB
testcase_07 AC 51 ms
35,812 KB
testcase_08 AC 11 ms
35,072 KB
testcase_09 AC 11 ms
34,936 KB
testcase_10 AC 12 ms
34,960 KB
testcase_11 AC 14 ms
35,788 KB
testcase_12 AC 11 ms
35,016 KB
testcase_13 AC 16 ms
35,456 KB
testcase_14 AC 12 ms
35,864 KB
testcase_15 AC 15 ms
35,392 KB
testcase_16 AC 11 ms
34,900 KB
testcase_17 AC 11 ms
34,892 KB
testcase_18 AC 23 ms
35,408 KB
testcase_19 AC 15 ms
35,328 KB
testcase_20 AC 11 ms
35,248 KB
testcase_21 AC 11 ms
35,712 KB
testcase_22 AC 12 ms
35,244 KB
testcase_23 AC 11 ms
35,048 KB
testcase_24 AC 12 ms
35,568 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;
#define endl "\n"
typedef long long ll;
const int mod = 1e9 + 7;
ll a[101][20010], l[101][20010];
int n, s, k;
int f(int n, int s) {
  if (l[n][s]++) return a[n][s];
  if (n == 0) return !s;
  return a[n][s] = (f(n - 1, s) + (s < n ? 0 : f(n, s - n))) % mod;
}
void solved() {
  memset(l, 0, sizeof l);
  memset(a, 0, sizeof a);
  cin >> n >> s >> k;
  if (n * (n - 1) / 2 * k > s) {
    cout << 0 << endl;
    return;
  }
  s -= n * (n - 1) / 2 * k;
  cout << f(n, s) << endl;
}

int main() {
  ios::sync_with_stdio(0);
  cin.tie(0);
  cout.tie(0);
  /*int t = 1;
  cin >> t;
  while (t--)*/
  solved();

  return 0;
}
0