結果

問題 No.269 見栄っ張りの募金活動
ユーザー highdhighd
提出日時 2016-10-27 11:03:02
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 671 bytes
コンパイル時間 608 ms
コンパイル使用メモリ 64,128 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-03 06:20:01
合計ジャッジ時間 5,313 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 5 ms
5,376 KB
testcase_04 AC 854 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 1,267 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 354 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 171 ms
5,376 KB
testcase_14 AC 153 ms
5,376 KB
testcase_15 AC 236 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 265 ms
5,376 KB
testcase_19 AC 82 ms
5,376 KB
testcase_20 AC 50 ms
5,376 KB
testcase_21 AC 177 ms
5,376 KB
testcase_22 AC 60 ms
5,376 KB
testcase_23 AC 3 ms
5,376 KB
testcase_24 AC 136 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <cstdint>

int main() {
	std::uint_fast32_t map[20001] = { 1 };
	std::uint_fast32_t map_tmp[20001] = { 1 };
	int n, maney, k;
	std::cin >> n >> maney >> k;
	maney -= (n - 1)*n/2*k;

	for (int i = 0; i <= maney; i++) {
		map[i] = 1;
	}
	for (int i = 1; i < n ; i++) {
		for (int j = 0; j <= maney; j++) {
			int now_maney = j;
			std::uint_fast32_t count = 0;
			while (now_maney >= 0) {
				count += map[now_maney];
				if (count > 1000000007) {
					count -= 1000000007;
				}
				now_maney -= i + 1;
			}
			map_tmp[j] = count;
		}
		for (int j = 0; j <= maney; j++) {
			map[j] = map_tmp[j];
		}
	}
	std::cout << map[maney] << std::endl;
}
0