結果

問題 No.129 お年玉(2)
ユーザー koyumeishikoyumeishi
提出日時 2015-01-16 23:49:15
言語 C++11
(gcc 11.4.0)
結果
MLE  
実行時間 -
コード長 774 bytes
コンパイル時間 845 ms
コンパイル使用メモリ 77,448 KB
実行使用メモリ 784,896 KB
最終ジャッジ日時 2024-06-22 12:49:32
合計ジャッジ時間 16,649 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 16 ms
14,592 KB
testcase_01 MLE -
testcase_02 AC 8 ms
6,944 KB
testcase_03 AC 3 ms
6,944 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 362 ms
270,464 KB
testcase_06 AC 288 ms
219,520 KB
testcase_07 AC 535 ms
400,128 KB
testcase_08 AC 518 ms
385,024 KB
testcase_09 AC 256 ms
194,176 KB
testcase_10 AC 607 ms
454,912 KB
testcase_11 AC 304 ms
231,040 KB
testcase_12 AC 38 ms
29,824 KB
testcase_13 AC 26 ms
21,632 KB
testcase_14 AC 292 ms
223,488 KB
testcase_15 AC 250 ms
190,336 KB
testcase_16 AC 350 ms
264,704 KB
testcase_17 AC 224 ms
168,576 KB
testcase_18 AC 536 ms
398,720 KB
testcase_19 MLE -
testcase_20 AC 434 ms
331,392 KB
testcase_21 AC 276 ms
209,408 KB
testcase_22 AC 359 ms
271,488 KB
testcase_23 AC 593 ms
447,616 KB
testcase_24 MLE -
testcase_25 AC 287 ms
217,984 KB
testcase_26 AC 424 ms
318,848 KB
testcase_27 AC 391 ms
295,552 KB
testcase_28 AC 459 ms
343,424 KB
testcase_29 AC 2 ms
6,940 KB
testcase_30 AC 2 ms
6,944 KB
testcase_31 AC 2 ms
6,944 KB
testcase_32 AC 2 ms
6,940 KB
testcase_33 AC 2 ms
6,944 KB
testcase_34 AC 3 ms
6,944 KB
testcase_35 AC 2 ms
6,944 KB
testcase_36 AC 4 ms
6,944 KB
testcase_37 AC 3 ms
6,944 KB
testcase_38 AC 51 ms
38,784 KB
testcase_39 AC 53 ms
40,320 KB
testcase_40 AC 144 ms
109,184 KB
testcase_41 AC 185 ms
141,056 KB
testcase_42 AC 86 ms
64,640 KB
testcase_43 AC 19 ms
15,360 KB
testcase_44 MLE -
testcase_45 AC 47 ms
36,096 KB
testcase_46 AC 23 ms
18,688 KB
testcase_47 MLE -
testcase_48 AC 563 ms
397,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <cstdio>
#include <sstream>
#include <map>
#include <string>
#include <algorithm>
#include <queue>
#include <cmath>
#include <set>
using namespace std;

#define MOD 1000000000

int main(){
	long long n,m;
	cin >> n >> m;
	n -= ((n/m)/1000) * 1000 * m;

	n /= 1000;
	//cout << n << endl;

	//dp[i][j] := 使った千円札の数がi枚で、j番目の袋までに入れた場合の組み合わせ
	vector<vector<long long>> dp(n+1, vector<long long>(m+1, 0));
	dp[0][0] = 1;
	for(int i=0; i<=n; i++){
		for(int j=0; j<m; j++){
			dp[i][j+1] += dp[i][j];
			dp[i][j+1] %= MOD;
			if(i+1 <= n){
				dp[i+1][j+1] += dp[i][j];
				dp[i+1][j+1] %= MOD;
			}
		}
	}

	long long ans = dp[n][m] % MOD;
	cout << ans << endl;
	return 0;
}
0