結果

問題 No.129 お年玉(2)
ユーザー ttakanottakano
提出日時 2017-11-30 11:21:36
言語 C++11
(gcc 11.4.0)
結果
MLE  
実行時間 -
コード長 799 bytes
コンパイル時間 1,920 ms
コンパイル使用メモリ 162,532 KB
実行使用メモリ 784,896 KB
最終ジャッジ日時 2024-05-05 16:09:44
合計ジャッジ時間 17,274 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
41,728 KB
testcase_01 MLE -
testcase_02 AC 6 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 324 ms
321,408 KB
testcase_06 AC 400 ms
510,080 KB
testcase_07 MLE -
testcase_08 AC 332 ms
425,600 KB
testcase_09 MLE -
testcase_10 MLE -
testcase_11 AC 323 ms
407,936 KB
testcase_12 MLE -
testcase_13 MLE -
testcase_14 MLE -
testcase_15 AC 351 ms
443,392 KB
testcase_16 AC 398 ms
504,832 KB
testcase_17 MLE -
testcase_18 MLE -
testcase_19 MLE -
testcase_20 MLE -
testcase_21 MLE -
testcase_22 AC 347 ms
430,464 KB
testcase_23 MLE -
testcase_24 MLE -
testcase_25 AC 324 ms
410,624 KB
testcase_26 AC 337 ms
420,608 KB
testcase_27 AC 337 ms
407,936 KB
testcase_28 MLE -
testcase_29 AC 2 ms
5,376 KB
testcase_30 AC 2 ms
5,376 KB
testcase_31 AC 3 ms
5,376 KB
testcase_32 AC 2 ms
5,376 KB
testcase_33 AC 6 ms
7,680 KB
testcase_34 AC 3 ms
5,376 KB
testcase_35 AC 5 ms
7,040 KB
testcase_36 AC 5 ms
7,936 KB
testcase_37 AC 6 ms
9,216 KB
testcase_38 AC 69 ms
86,144 KB
testcase_39 AC 101 ms
132,608 KB
testcase_40 AC 302 ms
380,928 KB
testcase_41 AC 181 ms
230,912 KB
testcase_42 AC 77 ms
98,048 KB
testcase_43 AC 75 ms
96,512 KB
testcase_44 MLE -
testcase_45 AC 43 ms
53,888 KB
testcase_46 AC 120 ms
148,480 KB
testcase_47 MLE -
testcase_48 AC 352 ms
449,536 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "bits/stdc++.h"
using namespace std;
#define print(x) cout<<x<<endl;
#define rep(i,a,b) for(int i=a;i<b;i++)
#define REP(i,a) for(int i=0;i<a;i++)
#define printall(n,array) for(int i=0;i<n;i++){cout<<array[i];}cout<<endl;
typedef long long ll;
typedef pair<int, int> PI;
typedef pair<int, PI> V;
typedef vector<int> VE;
const ll mod = 1000000000;


void nCr(vector<vector <long long int> > &v){
  for(ll i=0;i<v.size();i++){
    v[i][0]=1;
    v[i][i]=1;
  }  
  for(ll i=1;i<v.size();i++){
    for(ll j=1;j<i;j++){
      v[i][j]=(v[i-1][j-1]+v[i-1][j])%mod;
    }
  }
}


int main(){
  ll n;
  ll m;
  cin>>n;
  cin>>m;
  vector<vector<long long int> > v(m+1,vector<long long int>(m+1,0));
  ll rest=0;
  rest=(n%(1000*m));
  rest-=rest%1000;
  rest/=1000;
  nCr(v);
  print(v[m][rest]);
}
0