結果

問題 No.129 お年玉(2)
ユーザー zuvizudarzuvizudar
提出日時 2017-06-18 13:43:44
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 236 ms / 5,000 ms
コード長 1,039 bytes
コンパイル時間 766 ms
コンパイル使用メモリ 87,064 KB
実行使用メモリ 236,800 KB
最終ジャッジ日時 2024-05-05 23:27:50
合計ジャッジ時間 7,863 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 17 ms
21,888 KB
testcase_01 AC 233 ms
236,800 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 104 ms
108,544 KB
testcase_06 AC 171 ms
162,176 KB
testcase_07 AC 224 ms
194,688 KB
testcase_08 AC 159 ms
138,240 KB
testcase_09 AC 207 ms
180,736 KB
testcase_10 AC 210 ms
201,088 KB
testcase_11 AC 130 ms
133,248 KB
testcase_12 AC 163 ms
169,088 KB
testcase_13 AC 168 ms
176,128 KB
testcase_14 AC 163 ms
170,624 KB
testcase_15 AC 140 ms
143,360 KB
testcase_16 AC 156 ms
160,512 KB
testcase_17 AC 223 ms
191,232 KB
testcase_18 AC 175 ms
181,248 KB
testcase_19 AC 185 ms
192,256 KB
testcase_20 AC 185 ms
190,848 KB
testcase_21 AC 226 ms
232,064 KB
testcase_22 AC 134 ms
139,776 KB
testcase_23 AC 199 ms
206,464 KB
testcase_24 AC 192 ms
199,168 KB
testcase_25 AC 128 ms
134,016 KB
testcase_26 AC 134 ms
136,832 KB
testcase_27 AC 130 ms
133,376 KB
testcase_28 AC 236 ms
233,984 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 5 ms
7,680 KB
testcase_34 AC 4 ms
5,504 KB
testcase_35 AC 5 ms
7,168 KB
testcase_36 AC 6 ms
7,680 KB
testcase_37 AC 6 ms
8,576 KB
testcase_38 AC 31 ms
37,248 KB
testcase_39 AC 46 ms
51,840 KB
testcase_40 AC 122 ms
125,568 KB
testcase_41 AC 78 ms
81,792 KB
testcase_42 AC 36 ms
41,088 KB
testcase_43 AC 35 ms
40,448 KB
testcase_44 AC 230 ms
235,136 KB
testcase_45 AC 21 ms
26,368 KB
testcase_46 AC 50 ms
56,832 KB
testcase_47 AC 223 ms
228,224 KB
testcase_48 AC 140 ms
145,024 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<cstdio>
#include<cstdlib>
#include<cstring>
#include<cmath>
#include<ctime>
#include<cctype>
#include<climits>
#include<iostream>
#include<string>
#include<vector>
#include<map>
#include<list>
#include<queue>
#include<deque>
#include<algorithm>
#include<numeric>
#include<utility>
#include<complex>
#include<memory>
#include<functional>
 
using namespace std;
 
#define ALL(g) (g).begin(),(g).end()
#define REP(i, x, n) for(int i = x; i < n; i++)
#define rep(i,n) REP(i,0,n)
#define F(i,j,k) fill(i[0],i[0]+j*j,k)
#define P(p) cout<<(p)<<endl;
#define EXIST(s,e) ((s).find(e)!=(s).end())
#define INF 1<<25
#define pb push_back
 
typedef vector<int> vi;
typedef vector<long long> vl;
typedef vector<double> vd;
typedef pair<int,int> pii;
typedef pair<long,long> pll;
typedef long long ll;

int pascal[10001][10001],M;
ll N;
int main(){
	cin>>N>>M;
	for(int i=0;i<=M;i++){
		pascal[i][0]=1;
		for(int j=1;j<=i;j++){
				pascal[i][j]=(pascal[i-1][j]+pascal[i-1][j-1])%1000000000;
		}
	}
	cout<<pascal[M][N/1000%M]<<endl;
	return 0;
}
0