結果

問題 No.269 見栄っ張りの募金活動
ユーザー onechankeidansionechankeidansi
提出日時 2019-03-09 02:13:15
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 515 bytes
コンパイル時間 1,608 ms
コンパイル使用メモリ 167,460 KB
実行使用メモリ 19,404 KB
最終ジャッジ日時 2024-06-23 15:10:57
合計ジャッジ時間 2,686 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 10 ms
19,284 KB
testcase_02 AC 11 ms
19,232 KB
testcase_03 AC 10 ms
19,276 KB
testcase_04 AC 10 ms
19,200 KB
testcase_05 AC 10 ms
19,288 KB
testcase_06 AC 10 ms
19,232 KB
testcase_07 AC 10 ms
19,204 KB
testcase_08 AC 9 ms
19,240 KB
testcase_09 AC 10 ms
19,196 KB
testcase_10 AC 11 ms
19,204 KB
testcase_11 AC 10 ms
19,224 KB
testcase_12 AC 11 ms
19,048 KB
testcase_13 AC 9 ms
19,384 KB
testcase_14 AC 10 ms
19,264 KB
testcase_15 AC 10 ms
19,236 KB
testcase_16 AC 10 ms
19,208 KB
testcase_17 AC 10 ms
19,184 KB
testcase_18 AC 10 ms
19,240 KB
testcase_19 AC 10 ms
19,080 KB
testcase_20 AC 10 ms
19,404 KB
testcase_21 AC 9 ms
19,184 KB
testcase_22 AC 10 ms
19,260 KB
testcase_23 AC 10 ms
19,324 KB
testcase_24 AC 9 ms
19,292 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-2)*K/2 >= 0) printf("%lld\n", dp[N][S-(N-1)*N*K/2]); else printf("0\n");
	return 0;
}
0