結果

問題 No.269 見栄っ張りの募金活動
ユーザー 37kt_37kt_
提出日時 2015-10-17 18:29:59
言語 C++11
(gcc 11.4.0)
結果
TLE  
実行時間 -
コード長 547 bytes
コンパイル時間 2,139 ms
コンパイル使用メモリ 159,264 KB
実行使用メモリ 11,368 KB
最終ジャッジ日時 2024-07-22 10:25:16
合計ジャッジ時間 19,860 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 5 ms
11,212 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 18 ms
11,172 KB
testcase_04 AC 3,788 ms
11,328 KB
testcase_05 AC 6 ms
11,336 KB
testcase_06 AC 5 ms
11,304 KB
testcase_07 TLE -
testcase_08 AC 4 ms
11,212 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 5 ms
11,168 KB
testcase_11 AC 1,695 ms
11,232 KB
testcase_12 AC 2 ms
6,940 KB
testcase_13 AC 775 ms
11,324 KB
testcase_14 AC 540 ms
11,304 KB
testcase_15 AC 1,083 ms
11,368 KB
testcase_16 AC 2 ms
6,944 KB
testcase_17 AC 1 ms
6,940 KB
testcase_18 AC 1,207 ms
11,216 KB
testcase_19 AC 376 ms
11,316 KB
testcase_20 AC 248 ms
11,356 KB
testcase_21 AC 848 ms
11,236 KB
testcase_22 AC 274 ms
11,340 KB
testcase_23 AC 11 ms
11,316 KB
testcase_24 AC 674 ms
11,252 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

const int MOD = 1e9 + 7;

int n, s, k;
int dp[101][20001];

int calc(int i, int s)
{
	if (s < 0) return 0;
	if (i == n) return !s;
	if (~dp[i][s]) return dp[i][s];
	int res = 0;
	for (int j = 0;; j++){
		int ns = s - (n - i) * j;
		if (ns < 0) break;
		res = (res + calc(i + 1, ns)) % MOD;
	}
	return dp[i][s] = res;
}

int main()
{
	cin >> n >> s >> k;
	
	int S = s - k * n * (n - 1) / 2;
	if (S < 0){
		cout << 0 << endl;
		return 0;
	}
	
	memset(dp, -1, sizeof(dp));
	cout << calc(0, S) << endl;
}
0