結果

問題 No.269 見栄っ張りの募金活動
ユーザー onechankeidansionechankeidansi
提出日時 2019-03-09 02:20:11
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 10 ms / 5,000 ms
コード長 511 bytes
コンパイル時間 1,520 ms
コンパイル使用メモリ 165,716 KB
実行使用メモリ 19,328 KB
最終ジャッジ日時 2024-06-23 15:11:00
合計ジャッジ時間 2,793 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 8 ms
19,120 KB
testcase_01 AC 9 ms
19,196 KB
testcase_02 AC 10 ms
19,316 KB
testcase_03 AC 8 ms
19,256 KB
testcase_04 AC 8 ms
19,116 KB
testcase_05 AC 8 ms
19,204 KB
testcase_06 AC 8 ms
19,272 KB
testcase_07 AC 8 ms
19,192 KB
testcase_08 AC 8 ms
19,256 KB
testcase_09 AC 7 ms
19,328 KB
testcase_10 AC 8 ms
19,224 KB
testcase_11 AC 9 ms
19,312 KB
testcase_12 AC 9 ms
19,164 KB
testcase_13 AC 10 ms
19,200 KB
testcase_14 AC 9 ms
19,324 KB
testcase_15 AC 8 ms
19,200 KB
testcase_16 AC 8 ms
19,200 KB
testcase_17 AC 9 ms
19,112 KB
testcase_18 AC 9 ms
19,240 KB
testcase_19 AC 8 ms
19,328 KB
testcase_20 AC 9 ms
19,224 KB
testcase_21 AC 8 ms
19,224 KB
testcase_22 AC 9 ms
19,164 KB
testcase_23 AC 8 ms
19,328 KB
testcase_24 AC 8 ms
19,192 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

const long long MOD = 1000000007;
long long dp[101][20001];


int main(){
	long long N, S ,K;
	scanf("%lld",&N);
	scanf("%lld",&S);
	scanf("%lld",&K);

	dp[0][0] = 1;

	for (int i = 1; i <= 100; i++) {
		for (int j = 0; j <= 20000; j++) {
			if (j - i >= 0) {
				dp[i][j] = (dp[i - 1][j] + dp[i][j - i]) % MOD;
			} else {
				dp[i][j] = dp[i - 1][j];
			}
		}
	}

	if (S-(N-1)*N*K/2 >= 0) printf("%lld\n", dp[N][S-(N-1)*N*K/2]); else printf("0\n");
	return 0;
}
0