結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 19 ms
22,016 KB
testcase_01 AC 300 ms
236,800 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 124 ms
108,544 KB
testcase_06 AC 184 ms
162,304 KB
testcase_07 AC 223 ms
194,688 KB
testcase_08 AC 155 ms
138,368 KB
testcase_09 AC 208 ms
180,736 KB
testcase_10 AC 235 ms
201,088 KB
testcase_11 AC 153 ms
133,376 KB
testcase_12 AC 196 ms
169,088 KB
testcase_13 AC 200 ms
176,128 KB
testcase_14 AC 195 ms
170,496 KB
testcase_15 AC 163 ms
143,360 KB
testcase_16 AC 183 ms
160,768 KB
testcase_17 AC 222 ms
191,360 KB
testcase_18 AC 219 ms
181,248 KB
testcase_19 AC 223 ms
192,256 KB
testcase_20 AC 225 ms
190,848 KB
testcase_21 AC 288 ms
232,064 KB
testcase_22 AC 160 ms
139,776 KB
testcase_23 AC 248 ms
206,592 KB
testcase_24 AC 232 ms
199,296 KB
testcase_25 AC 155 ms
134,016 KB
testcase_26 AC 162 ms
136,832 KB
testcase_27 AC 159 ms
133,248 KB
testcase_28 AC 271 ms
234,112 KB
testcase_29 AC 2 ms
5,376 KB
testcase_30 AC 2 ms
5,376 KB
testcase_31 AC 1 ms
5,376 KB
testcase_32 AC 2 ms
5,376 KB
testcase_33 AC 1 ms
5,376 KB
testcase_34 AC 4 ms
5,632 KB
testcase_35 AC 5 ms
7,296 KB
testcase_36 AC 5 ms
7,552 KB
testcase_37 AC 6 ms
8,576 KB
testcase_38 AC 36 ms
37,248 KB
testcase_39 AC 52 ms
51,968 KB
testcase_40 AC 140 ms
125,568 KB
testcase_41 AC 87 ms
81,920 KB
testcase_42 AC 39 ms
40,960 KB
testcase_43 AC 39 ms
40,448 KB
testcase_44 AC 289 ms
235,136 KB
testcase_45 AC 24 ms
26,240 KB
testcase_46 AC 58 ms
56,832 KB
testcase_47 AC 269 ms
228,352 KB
testcase_48 AC 167 ms
145,152 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