結果

問題 No.269 見栄っ張りの募金活動
ユーザー penguinshunyapenguinshunya
提出日時 2019-07-22 14:09:43
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 25 ms / 5,000 ms
コード長 506 bytes
コンパイル時間 1,431 ms
コンパイル使用メモリ 166,488 KB
実行使用メモリ 13,060 KB
最終ジャッジ日時 2024-06-23 18:36:17
合計ジャッジ時間 2,320 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
11,884 KB
testcase_01 AC 4 ms
12,124 KB
testcase_02 AC 5 ms
12,084 KB
testcase_03 AC 4 ms
12,176 KB
testcase_04 AC 12 ms
12,932 KB
testcase_05 AC 5 ms
12,040 KB
testcase_06 AC 5 ms
12,032 KB
testcase_07 AC 25 ms
13,060 KB
testcase_08 AC 4 ms
12,012 KB
testcase_09 AC 6 ms
12,128 KB
testcase_10 AC 5 ms
12,160 KB
testcase_11 AC 7 ms
12,648 KB
testcase_12 AC 6 ms
12,048 KB
testcase_13 AC 7 ms
12,420 KB
testcase_14 AC 6 ms
13,036 KB
testcase_15 AC 7 ms
12,528 KB
testcase_16 AC 6 ms
11,972 KB
testcase_17 AC 5 ms
12,060 KB
testcase_18 AC 14 ms
12,588 KB
testcase_19 AC 7 ms
12,272 KB
testcase_20 AC 5 ms
12,188 KB
testcase_21 AC 6 ms
12,872 KB
testcase_22 AC 6 ms
12,356 KB
testcase_23 AC 4 ms
12,280 KB
testcase_24 AC 6 ms
12,564 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int N, S, K;
int dp[110][20010];

int dfs(int i, int t) {
  if (t > S) return 0;
  if (dp[i][t] != -1) return dp[i][t];
  if (i == N) {
    return dp[i][t] = (t == S);
  }
  int ret = dfs(i + 1, t + K * (N - i - 1)) + dfs(i, t + N - i);
  return dp[i][t] = ret % 1000000007;
}

int main() {
  cin >> N >> S >> K;
  for (int i = 0; i < 110; i++) {
    for (int j = 0; j < 20010; j++) {
      dp[i][j] = -1;
    }
  }
  cout << dfs(0, 0) << '\n';
  return 0;
}
0