結果

問題 No.129 お年玉(2)
ユーザー zuvizudarzuvizudar
提出日時 2017-06-18 13:15:51
言語 C++11
(gcc 11.4.0)
結果
MLE  
(最新)
AC  
(最初)
実行時間 -
コード長 1,063 bytes
コンパイル時間 1,119 ms
コンパイル使用メモリ 89,016 KB
実行使用メモリ 691,752 KB
最終ジャッジ日時 2024-05-05 23:25:30
合計ジャッジ時間 11,230 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
31,616 KB
testcase_01 MLE -
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 162 ms
188,032 KB
testcase_06 AC 271 ms
288,768 KB
testcase_07 MLE -
testcase_08 AC 217 ms
244,096 KB
testcase_09 MLE -
testcase_10 MLE -
testcase_11 AC 206 ms
234,496 KB
testcase_12 MLE -
testcase_13 MLE -
testcase_14 MLE -
testcase_15 AC 225 ms
253,312 KB
testcase_16 AC 254 ms
285,952 KB
testcase_17 MLE -
testcase_18 MLE -
testcase_19 MLE -
testcase_20 MLE -
testcase_21 MLE -
testcase_22 AC 220 ms
246,656 KB
testcase_23 MLE -
testcase_24 MLE -
testcase_25 AC 206 ms
235,904 KB
testcase_26 AC 206 ms
241,280 KB
testcase_27 AC 203 ms
234,368 KB
testcase_28 MLE -
testcase_29 AC 2 ms
5,376 KB
testcase_30 AC 1 ms
5,376 KB
testcase_31 AC 2 ms
5,376 KB
testcase_32 AC 2 ms
5,376 KB
testcase_33 AC 7 ms
8,832 KB
testcase_34 AC 4 ms
5,760 KB
testcase_35 AC 6 ms
8,064 KB
testcase_36 AC 6 ms
8,704 KB
testcase_37 AC 7 ms
10,240 KB
testcase_38 AC 46 ms
57,856 KB
testcase_39 AC 68 ms
84,352 KB
testcase_40 AC 213 ms
219,776 KB
testcase_41 AC 118 ms
138,624 KB
testcase_42 AC 51 ms
64,768 KB
testcase_43 AC 51 ms
63,744 KB
testcase_44 MLE -
testcase_45 AC 38 ms
39,040 KB
testcase_46 AC 82 ms
93,056 KB
testcase_47 MLE -
testcase_48 MLE -
権限があれば一括ダウンロードができます

ソースコード

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;

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