結果

問題 No.129 お年玉(2)
ユーザー ttakanottakano
提出日時 2017-11-30 11:19:41
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 793 bytes
コンパイル時間 1,865 ms
コンパイル使用メモリ 162,696 KB
実行使用メモリ 785,024 KB
最終ジャッジ日時 2024-05-05 16:06:04
合計ジャッジ時間 17,859 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 MLE -
testcase_02 AC 8 ms
6,944 KB
testcase_03 AC 3 ms
5,376 KB
testcase_04 AC 3 ms
5,376 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 MLE -
testcase_08 WA -
testcase_09 MLE -
testcase_10 MLE -
testcase_11 WA -
testcase_12 MLE -
testcase_13 MLE -
testcase_14 MLE -
testcase_15 WA -
testcase_16 WA -
testcase_17 MLE -
testcase_18 MLE -
testcase_19 MLE -
testcase_20 MLE -
testcase_21 MLE -
testcase_22 WA -
testcase_23 MLE -
testcase_24 MLE -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 MLE -
testcase_29 AC 2 ms
6,940 KB
testcase_30 AC 3 ms
6,944 KB
testcase_31 AC 3 ms
6,944 KB
testcase_32 WA -
testcase_33 AC 6 ms
7,808 KB
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 MLE -
testcase_45 WA -
testcase_46 WA -
testcase_47 MLE -
testcase_48 WA -
権限があれば一括ダウンロードができます

ソースコード

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];
    }
  }
}


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