結果

問題 No.129 お年玉(2)
ユーザー dnishdnish
提出日時 2017-07-10 00:38:37
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 239 ms / 5,000 ms
コード長 484 bytes
コンパイル時間 1,597 ms
コンパイル使用メモリ 166,412 KB
実行使用メモリ 315,904 KB
最終ジャッジ日時 2024-05-05 23:29:04
合計ジャッジ時間 8,040 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
31,488 KB
testcase_01 AC 239 ms
315,904 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 107 ms
174,208 KB
testcase_06 AC 150 ms
239,616 KB
testcase_07 AC 177 ms
273,792 KB
testcase_08 AC 130 ms
212,096 KB
testcase_09 AC 165 ms
259,456 KB
testcase_10 AC 198 ms
279,936 KB
testcase_11 AC 127 ms
206,208 KB
testcase_12 AC 157 ms
247,040 KB
testcase_13 AC 161 ms
254,464 KB
testcase_14 AC 156 ms
248,832 KB
testcase_15 AC 133 ms
218,112 KB
testcase_16 AC 148 ms
237,952 KB
testcase_17 AC 174 ms
270,336 KB
testcase_18 AC 165 ms
259,968 KB
testcase_19 AC 174 ms
271,232 KB
testcase_20 AC 173 ms
269,952 KB
testcase_21 AC 218 ms
311,296 KB
testcase_22 AC 132 ms
213,760 KB
testcase_23 AC 185 ms
285,568 KB
testcase_24 AC 185 ms
278,272 KB
testcase_25 AC 126 ms
206,976 KB
testcase_26 AC 128 ms
210,432 KB
testcase_27 AC 125 ms
205,952 KB
testcase_28 AC 219 ms
313,088 KB
testcase_29 AC 2 ms
5,376 KB
testcase_30 AC 2 ms
5,376 KB
testcase_31 AC 2 ms
5,376 KB
testcase_32 AC 2 ms
5,376 KB
testcase_33 AC 6 ms
8,832 KB
testcase_34 AC 4 ms
5,888 KB
testcase_35 AC 6 ms
8,064 KB
testcase_36 AC 5 ms
8,960 KB
testcase_37 AC 7 ms
10,112 KB
testcase_38 AC 42 ms
57,984 KB
testcase_39 AC 55 ms
84,224 KB
testcase_40 AC 125 ms
196,480 KB
testcase_41 AC 82 ms
135,680 KB
testcase_42 AC 45 ms
64,768 KB
testcase_43 AC 45 ms
63,744 KB
testcase_44 AC 222 ms
314,240 KB
testcase_45 AC 30 ms
39,040 KB
testcase_46 AC 61 ms
93,056 KB
testcase_47 AC 212 ms
307,328 KB
testcase_48 AC 137 ms
220,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define p(s) cout<<(s)<<endl
typedef long long ll;
using namespace std;
const ll mod=1e9;

ll comb[10010][5010];
void combinationDP(int n){
	for(int i=0; i < n + 1; i++){
		for(int j=0; j < i + 1; j++){
			if(j==0 || i==j) comb[i][j]=1;
			else comb[i][j]=comb[i-1][j-1]+comb[i-1][j];
			comb[i][j]%=mod;
		}
	}
}
int main(){
	ll n,m;
	cin>>n>>m;
	ll dist=n/1000/m;
	ll r=n-dist*1000*m;
	r/=1000;
	r=min(r,m-r);
	combinationDP(m);
	p(comb[m][r]);
	return 0;
}
0