結果

問題 No.129 お年玉(2)
ユーザー koyumeishikoyumeishi
提出日時 2015-01-17 00:03:21
言語 C++11
(gcc 11.4.0)
結果
MLE  
実行時間 -
コード長 703 bytes
コンパイル時間 1,314 ms
コンパイル使用メモリ 77,892 KB
実行使用メモリ 784,896 KB
最終ジャッジ日時 2024-06-22 13:05:51
合計ジャッジ時間 13,629 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 14 ms
14,720 KB
testcase_01 MLE -
testcase_02 AC 8 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 3 ms
6,940 KB
testcase_05 AC 286 ms
270,464 KB
testcase_06 AC 250 ms
219,392 KB
testcase_07 AC 439 ms
400,000 KB
testcase_08 AC 404 ms
385,024 KB
testcase_09 AC 225 ms
194,304 KB
testcase_10 AC 495 ms
454,912 KB
testcase_11 AC 257 ms
231,168 KB
testcase_12 AC 35 ms
30,188 KB
testcase_13 AC 25 ms
21,980 KB
testcase_14 AC 257 ms
223,616 KB
testcase_15 AC 215 ms
190,464 KB
testcase_16 AC 295 ms
264,832 KB
testcase_17 AC 197 ms
168,576 KB
testcase_18 AC 427 ms
398,720 KB
testcase_19 MLE -
testcase_20 AC 366 ms
331,392 KB
testcase_21 AC 248 ms
209,408 KB
testcase_22 AC 298 ms
271,360 KB
testcase_23 AC 481 ms
447,616 KB
testcase_24 MLE -
testcase_25 AC 241 ms
218,112 KB
testcase_26 AC 335 ms
318,848 KB
testcase_27 AC 316 ms
295,552 KB
testcase_28 AC 392 ms
343,808 KB
testcase_29 AC 3 ms
6,944 KB
testcase_30 AC 19 ms
6,940 KB
testcase_31 AC 2 ms
6,940 KB
testcase_32 AC 2 ms
6,940 KB
testcase_33 AC 2 ms
6,940 KB
testcase_34 AC 3 ms
6,940 KB
testcase_35 AC 2 ms
6,940 KB
testcase_36 AC 4 ms
6,944 KB
testcase_37 AC 3 ms
6,944 KB
testcase_38 AC 43 ms
38,784 KB
testcase_39 AC 46 ms
40,320 KB
testcase_40 AC 125 ms
109,312 KB
testcase_41 AC 153 ms
141,056 KB
testcase_42 AC 68 ms
64,640 KB
testcase_43 AC 17 ms
15,744 KB
testcase_44 MLE -
testcase_45 AC 38 ms
36,096 KB
testcase_46 AC 21 ms
19,200 KB
testcase_47 MLE -
testcase_48 AC 408 ms
397,184 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;

	vector<vector<long long>> dp(m+1, vector<long long>(n+1, 0));
	dp[0][0] = 1;
	for(int i=0; i<m; ++i){
		for(int j=0; j<=i+1 && j<=n; ++j){
			
			dp[i+1][j] += dp[i][j];
			if(dp[i+1][j]>=MOD) dp[i+1][j] -= MOD;

			if(j+1<=n){
				dp[i+1][j+1] += dp[i][j];
				if(dp[i+1][j+1]>=MOD) dp[i+1][j+1] -= MOD;
			}
			
		}
	}

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