結果
問題 | No.129 お年玉(2) |
ユーザー | zuvizudar |
提出日時 | 2017-06-18 13:15:51 |
言語 | C++11 (gcc 11.4.0) |
結果 |
MLE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 1,063 bytes |
コンパイル時間 | 1,622 ms |
コンパイル使用メモリ | 88,996 KB |
実行使用メモリ | 771,180 KB |
最終ジャッジ日時 | 2024-11-28 00:53:09 |
合計ジャッジ時間 | 9,329 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 21 ms
31,360 KB |
testcase_01 | MLE | - |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 1 ms
5,248 KB |
testcase_05 | AC | 135 ms
187,904 KB |
testcase_06 | MLE | - |
testcase_07 | MLE | - |
testcase_08 | MLE | - |
testcase_09 | MLE | - |
testcase_10 | MLE | - |
testcase_11 | MLE | - |
testcase_12 | MLE | - |
testcase_13 | MLE | - |
testcase_14 | MLE | - |
testcase_15 | MLE | - |
testcase_16 | MLE | - |
testcase_17 | MLE | - |
testcase_18 | MLE | - |
testcase_19 | MLE | - |
testcase_20 | MLE | - |
testcase_21 | MLE | - |
testcase_22 | MLE | - |
testcase_23 | MLE | - |
testcase_24 | MLE | - |
testcase_25 | MLE | - |
testcase_26 | MLE | - |
testcase_27 | MLE | - |
testcase_28 | MLE | - |
testcase_29 | AC | 1 ms
5,248 KB |
testcase_30 | AC | 1 ms
5,248 KB |
testcase_31 | AC | 2 ms
5,248 KB |
testcase_32 | AC | 1 ms
5,248 KB |
testcase_33 | AC | 5 ms
8,704 KB |
testcase_34 | AC | 3 ms
5,760 KB |
testcase_35 | AC | 4 ms
8,064 KB |
testcase_36 | AC | 5 ms
8,704 KB |
testcase_37 | AC | 5 ms
10,112 KB |
testcase_38 | AC | 41 ms
57,856 KB |
testcase_39 | AC | 60 ms
84,096 KB |
testcase_40 | MLE | - |
testcase_41 | AC | 103 ms
138,624 KB |
testcase_42 | AC | 46 ms
64,768 KB |
testcase_43 | AC | 44 ms
63,744 KB |
testcase_44 | MLE | - |
testcase_45 | AC | 27 ms
38,912 KB |
testcase_46 | AC | 67 ms
93,056 KB |
testcase_47 | MLE | - |
testcase_48 | MLE | - |
ソースコード
#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; }