結果

問題 No.269 見栄っ張りの募金活動
ユーザー fumiphysfumiphys
提出日時 2018-07-04 20:06:41
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 15 ms / 5,000 ms
コード長 543 bytes
コンパイル時間 596 ms
コンパイル使用メモリ 60,168 KB
実行使用メモリ 11,264 KB
最終ジャッジ日時 2024-07-16 02:05:51
合計ジャッジ時間 1,458 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <iostream>
#include <cmath>

#define ll long long int

using namespace std;

const int mod = 1e9 + 7;

int dp[20001][101];

int main(int argc, char const* argv[])
{
	int n, s, k;
	cin >> n >> s >> k;
	s -= k * (n - 1) * n / 2;
	if(s < 0){
			cout << 0 << endl;
			return 0;
	}
	for(int i = 0; i <= n; i++)dp[0][i] = 1;
	for(int i = 1; i <= s; i++){
			for(int j = 1; j <= n; j++){
					if(i >= j)dp[i][j] = int(((ll)dp[i-j][j] + (ll)dp[i][j-1]) % mod);
					else dp[i][j] = dp[i][j-1];
			}
	}
	cout << dp[s][n] << endl;
	return 0;
}
0