結果

問題 No.129 お年玉(2)
ユーザー fiordfiord
提出日時 2015-07-01 22:21:28
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 304 ms / 5,000 ms
コード長 466 bytes
コンパイル時間 1,892 ms
コンパイル使用メモリ 158,164 KB
実行使用メモリ 343,552 KB
最終ジャッジ日時 2024-05-05 22:37:33
合計ジャッジ時間 7,316 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 10 ms
14,720 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 49 ms
54,400 KB
testcase_06 AC 196 ms
219,520 KB
testcase_07 AC 206 ms
229,120 KB
testcase_08 AC 40 ms
44,160 KB
testcase_09 AC 182 ms
194,176 KB
testcase_10 AC 180 ms
197,248 KB
testcase_11 AC 160 ms
180,224 KB
testcase_12 AC 26 ms
29,952 KB
testcase_13 AC 18 ms
21,760 KB
testcase_14 AC 195 ms
223,488 KB
testcase_15 AC 167 ms
190,208 KB
testcase_16 AC 213 ms
243,072 KB
testcase_17 AC 151 ms
168,576 KB
testcase_18 AC 162 ms
182,656 KB
testcase_19 AC 74 ms
82,688 KB
testcase_20 AC 262 ms
283,904 KB
testcase_21 AC 198 ms
209,536 KB
testcase_22 AC 163 ms
162,304 KB
testcase_23 AC 243 ms
224,512 KB
testcase_24 AC 36 ms
40,064 KB
testcase_25 AC 175 ms
195,840 KB
testcase_26 AC 95 ms
105,216 KB
testcase_27 AC 105 ms
115,584 KB
testcase_28 AC 304 ms
343,552 KB
testcase_29 AC 2 ms
5,376 KB
testcase_30 AC 1 ms
5,376 KB
testcase_31 AC 1 ms
5,376 KB
testcase_32 AC 1 ms
5,376 KB
testcase_33 AC 1 ms
5,376 KB
testcase_34 AC 2 ms
5,376 KB
testcase_35 AC 1 ms
5,376 KB
testcase_36 AC 3 ms
5,376 KB
testcase_37 AC 3 ms
5,376 KB
testcase_38 AC 34 ms
38,912 KB
testcase_39 AC 34 ms
40,448 KB
testcase_40 AC 99 ms
109,312 KB
testcase_41 AC 79 ms
93,184 KB
testcase_42 AC 30 ms
36,864 KB
testcase_43 AC 11 ms
15,744 KB
testcase_44 AC 102 ms
112,896 KB
testcase_45 AC 17 ms
21,504 KB
testcase_46 AC 14 ms
18,944 KB
testcase_47 AC 165 ms
187,392 KB
testcase_48 AC 49 ms
55,936 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef long long int ll;
#define E 1000000000
int main(){
	ll n,m;	cin>>n>>m;
	n/=1000;
	n%=m;
	if(n==0){
		cout<<1<<endl;
		return 0;
	}
	//mCnを求めれば良い
	if(n>m/2)	n=m-n;
	ll dp[m][n+1];
	for(int i=0;i<m;i++){
		for(int j=0;j<=n;j++)	dp[i][j]=1;
	}
	for(int i=1;i<m;i++){
		for(int j=1;j<=min((ll)i,n);j++){
			dp[i][j]=dp[i-1][j-1]+dp[i-1][j];
			dp[i][j]%=E;
		}
	}
	cout<<dp[m-1][n]<<endl;
	return 0;
}
0