結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 17 ms
22,016 KB
testcase_01 AC 227 ms
236,672 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 97 ms
108,416 KB
testcase_06 AC 148 ms
162,176 KB
testcase_07 AC 190 ms
194,816 KB
testcase_08 AC 126 ms
138,240 KB
testcase_09 AC 166 ms
180,608 KB
testcase_10 AC 185 ms
200,960 KB
testcase_11 AC 121 ms
133,248 KB
testcase_12 AC 156 ms
169,088 KB
testcase_13 AC 162 ms
175,872 KB
testcase_14 AC 156 ms
170,624 KB
testcase_15 AC 131 ms
143,360 KB
testcase_16 AC 148 ms
160,640 KB
testcase_17 AC 177 ms
191,232 KB
testcase_18 AC 168 ms
181,248 KB
testcase_19 AC 177 ms
192,000 KB
testcase_20 AC 176 ms
190,976 KB
testcase_21 AC 215 ms
232,064 KB
testcase_22 AC 128 ms
139,776 KB
testcase_23 AC 190 ms
206,592 KB
testcase_24 AC 193 ms
199,296 KB
testcase_25 AC 122 ms
134,016 KB
testcase_26 AC 125 ms
136,832 KB
testcase_27 AC 122 ms
133,248 KB
testcase_28 AC 216 ms
233,984 KB
testcase_29 AC 2 ms
5,248 KB
testcase_30 AC 2 ms
5,248 KB
testcase_31 AC 2 ms
5,248 KB
testcase_32 AC 2 ms
5,248 KB
testcase_33 AC 5 ms
7,552 KB
testcase_34 AC 3 ms
5,504 KB
testcase_35 AC 5 ms
7,168 KB
testcase_36 AC 5 ms
7,552 KB
testcase_37 AC 6 ms
8,320 KB
testcase_38 AC 30 ms
37,120 KB
testcase_39 AC 43 ms
51,712 KB
testcase_40 AC 118 ms
125,312 KB
testcase_41 AC 80 ms
81,792 KB
testcase_42 AC 35 ms
40,960 KB
testcase_43 AC 34 ms
40,576 KB
testcase_44 AC 220 ms
234,880 KB
testcase_45 AC 20 ms
26,368 KB
testcase_46 AC 47 ms
56,704 KB
testcase_47 AC 212 ms
228,224 KB
testcase_48 AC 132 ms
144,896 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