結果

問題 No.129 お年玉(2)
ユーザー fiordfiord
提出日時 2015-07-01 22:21:28
言語 C++11
(gcc 13.3.0)
結果
AC  
実行時間 340 ms / 5,000 ms
コード長 466 bytes
コンパイル時間 2,618 ms
コンパイル使用メモリ 157,940 KB
実行使用メモリ 343,424 KB
最終ジャッジ日時 2024-11-28 00:00:40
合計ジャッジ時間 7,891 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 11 ms
14,848 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 1 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 1 ms
5,248 KB
testcase_05 AC 55 ms
54,400 KB
testcase_06 AC 223 ms
219,392 KB
testcase_07 AC 226 ms
228,992 KB
testcase_08 AC 43 ms
44,032 KB
testcase_09 AC 188 ms
194,176 KB
testcase_10 AC 192 ms
196,992 KB
testcase_11 AC 172 ms
180,224 KB
testcase_12 AC 28 ms
29,952 KB
testcase_13 AC 19 ms
21,760 KB
testcase_14 AC 215 ms
223,360 KB
testcase_15 AC 183 ms
190,336 KB
testcase_16 AC 236 ms
243,328 KB
testcase_17 AC 163 ms
168,448 KB
testcase_18 AC 177 ms
182,528 KB
testcase_19 AC 83 ms
82,816 KB
testcase_20 AC 279 ms
283,904 KB
testcase_21 AC 206 ms
209,536 KB
testcase_22 AC 156 ms
162,304 KB
testcase_23 AC 222 ms
224,512 KB
testcase_24 AC 40 ms
40,192 KB
testcase_25 AC 188 ms
195,584 KB
testcase_26 AC 103 ms
105,216 KB
testcase_27 AC 112 ms
115,712 KB
testcase_28 AC 340 ms
343,424 KB
testcase_29 AC 1 ms
5,248 KB
testcase_30 AC 1 ms
5,248 KB
testcase_31 AC 1 ms
5,248 KB
testcase_32 AC 2 ms
5,248 KB
testcase_33 AC 2 ms
5,248 KB
testcase_34 AC 2 ms
5,248 KB
testcase_35 AC 2 ms
5,248 KB
testcase_36 AC 3 ms
5,248 KB
testcase_37 AC 3 ms
5,248 KB
testcase_38 AC 37 ms
38,784 KB
testcase_39 AC 38 ms
40,320 KB
testcase_40 AC 107 ms
109,312 KB
testcase_41 AC 91 ms
93,184 KB
testcase_42 AC 35 ms
36,992 KB
testcase_43 AC 14 ms
15,616 KB
testcase_44 AC 115 ms
112,896 KB
testcase_45 AC 19 ms
21,376 KB
testcase_46 AC 16 ms
19,072 KB
testcase_47 AC 182 ms
187,520 KB
testcase_48 AC 54 ms
55,808 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