結果

問題 No.129 お年玉(2)
ユーザー rodearodea
提出日時 2018-03-01 16:18:15
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 280 ms / 5,000 ms
コード長 564 bytes
コンパイル時間 618 ms
コンパイル使用メモリ 66,804 KB
実行使用メモリ 236,800 KB
最終ジャッジ日時 2024-11-28 01:01:05
合計ジャッジ時間 7,714 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 18 ms
22,016 KB
testcase_01 AC 280 ms
236,800 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 1 ms
5,248 KB
testcase_04 AC 1 ms
5,248 KB
testcase_05 AC 116 ms
108,416 KB
testcase_06 AC 163 ms
162,304 KB
testcase_07 AC 203 ms
194,816 KB
testcase_08 AC 142 ms
138,240 KB
testcase_09 AC 182 ms
180,736 KB
testcase_10 AC 210 ms
201,088 KB
testcase_11 AC 136 ms
133,376 KB
testcase_12 AC 190 ms
169,088 KB
testcase_13 AC 176 ms
176,128 KB
testcase_14 AC 170 ms
170,624 KB
testcase_15 AC 150 ms
143,488 KB
testcase_16 AC 163 ms
160,896 KB
testcase_17 AC 194 ms
191,232 KB
testcase_18 AC 186 ms
181,504 KB
testcase_19 AC 194 ms
192,384 KB
testcase_20 AC 191 ms
190,976 KB
testcase_21 AC 236 ms
232,320 KB
testcase_22 AC 143 ms
139,776 KB
testcase_23 AC 235 ms
206,592 KB
testcase_24 AC 200 ms
199,424 KB
testcase_25 AC 142 ms
134,016 KB
testcase_26 AC 142 ms
137,088 KB
testcase_27 AC 139 ms
133,376 KB
testcase_28 AC 236 ms
234,112 KB
testcase_29 AC 1 ms
5,248 KB
testcase_30 AC 1 ms
5,248 KB
testcase_31 AC 1 ms
5,248 KB
testcase_32 AC 2 ms
5,248 KB
testcase_33 AC 2 ms
5,248 KB
testcase_34 AC 3 ms
5,504 KB
testcase_35 AC 4 ms
7,296 KB
testcase_36 AC 5 ms
7,680 KB
testcase_37 AC 5 ms
8,448 KB
testcase_38 AC 35 ms
37,248 KB
testcase_39 AC 50 ms
51,968 KB
testcase_40 AC 132 ms
125,696 KB
testcase_41 AC 88 ms
81,920 KB
testcase_42 AC 40 ms
41,216 KB
testcase_43 AC 38 ms
40,704 KB
testcase_44 AC 229 ms
235,136 KB
testcase_45 AC 23 ms
26,368 KB
testcase_46 AC 56 ms
57,088 KB
testcase_47 AC 225 ms
228,224 KB
testcase_48 AC 149 ms
145,024 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<algorithm>
using namespace std;

int mod = 1e9;
int m;
int dp[10010][10010];

void PascalsTriangle() 
{
	dp[1][1] = 1;

	for (int i = 2; i <= m + 1; i++) 
	{
		for (int j = 1; j <= i; j++) 
		{
			if (j > 1)
			{
				dp[i][j] = (dp[i - 1][j - 1] + dp[i - 1][j]) % mod;
			}
			else 
			{
				dp[i][j] = dp[i - 1][j] % mod;
			}
		}
	}
}

int main()
{
	long long n;

	cin >> n >> m;

	n = (n % (m * 1000)) / 1000;

	if (n == 0)
	{
		cout << 1 << endl;
		return 0;
	}

	PascalsTriangle();

	cout << dp[m + 1][min(n, m - n) + 1] << endl;
}
0