結果

問題 No.129 お年玉(2)
ユーザー rodearodea
提出日時 2018-03-01 16:14:46
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 564 bytes
コンパイル時間 573 ms
コンパイル使用メモリ 67,808 KB
実行使用メモリ 392,408 KB
最終ジャッジ日時 2024-06-07 12:55:34
合計ジャッジ時間 7,451 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
82,664 KB
testcase_01 TLE -
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 3 ms
6,944 KB
testcase_05 AC 113 ms
253,624 KB
testcase_06 AC 166 ms
319,076 KB
testcase_07 AC 192 ms
351,764 KB
testcase_08 AC 139 ms
290,428 KB
testcase_09 AC 178 ms
337,652 KB
testcase_10 AC 196 ms
359,828 KB
testcase_11 AC 134 ms
284,424 KB
testcase_12 AC 167 ms
325,140 KB
testcase_13 AC 176 ms
333,408 KB
testcase_14 AC 169 ms
327,268 KB
testcase_15 AC 144 ms
296,500 KB
testcase_16 AC 159 ms
317,020 KB
testcase_17 AC 192 ms
349,776 KB
testcase_18 AC 179 ms
337,520 KB
testcase_19 AC 188 ms
349,884 KB
testcase_20 AC 186 ms
347,848 KB
testcase_21 AC 232 ms
389,232 KB
testcase_22 AC 141 ms
292,184 KB
testcase_23 AC 202 ms
364,196 KB
testcase_24 AC 195 ms
356,124 KB
testcase_25 AC 135 ms
284,312 KB
testcase_26 AC 140 ms
290,296 KB
testcase_27 AC 134 ms
284,224 KB
testcase_28 AC 235 ms
390,012 KB
testcase_29 AC 2 ms
6,944 KB
testcase_30 AC 2 ms
6,944 KB
testcase_31 AC 2 ms
6,940 KB
testcase_32 AC 2 ms
6,944 KB
testcase_33 AC 2 ms
6,944 KB
testcase_34 AC 6 ms
21,972 KB
testcase_35 AC 9 ms
32,232 KB
testcase_36 AC 10 ms
34,380 KB
testcase_37 AC 10 ms
38,532 KB
testcase_38 AC 43 ms
130,612 KB
testcase_39 AC 59 ms
161,360 KB
testcase_40 AC 129 ms
274,044 KB
testcase_41 AC 89 ms
214,684 KB
testcase_42 AC 47 ms
140,756 KB
testcase_43 AC 47 ms
138,824 KB
testcase_44 AC 239 ms
392,408 KB
testcase_45 AC 31 ms
101,916 KB
testcase_46 AC 65 ms
171,724 KB
testcase_47 AC 233 ms
385,080 KB
testcase_48 AC 148 ms
298,608 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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

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