結果

問題 No.129 お年玉(2)
ユーザー ttakanottakano
提出日時 2017-11-30 11:33:25
言語 C++11
(gcc 11.4.0)
結果
MLE  
(最新)
AC  
(最初)
実行時間 -
コード長 655 bytes
コンパイル時間 1,389 ms
コンパイル使用メモリ 158,940 KB
実行使用メモリ 546,260 KB
最終ジャッジ日時 2024-05-15 08:39:20
合計ジャッジ時間 11,547 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
101,356 KB
testcase_01 AC 499 ms
501,192 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 1 ms
6,944 KB
testcase_04 AC 1 ms
6,940 KB
testcase_05 AC 204 ms
256,076 KB
testcase_06 AC 310 ms
356,856 KB
testcase_07 AC 443 ms
418,260 KB
testcase_08 AC 207 ms
315,600 KB
testcase_09 AC 373 ms
395,168 KB
testcase_10 AC 410 ms
434,020 KB
testcase_11 AC 199 ms
305,792 KB
testcase_12 AC 344 ms
373,124 KB
testcase_13 AC 359 ms
386,332 KB
testcase_14 AC 323 ms
376,320 KB
testcase_15 AC 217 ms
324,968 KB
testcase_16 AC 267 ms
357,544 KB
testcase_17 AC 319 ms
415,364 KB
testcase_18 AC 300 ms
396,320 KB
testcase_19 AC 316 ms
416,944 KB
testcase_20 AC 315 ms
414,636 KB
testcase_21 AC 748 ms
495,104 KB
testcase_22 AC 210 ms
318,116 KB
testcase_23 AC 688 ms
444,620 KB
testcase_24 AC 581 ms
430,364 KB
testcase_25 AC 199 ms
307,308 KB
testcase_26 AC 206 ms
312,952 KB
testcase_27 AC 200 ms
305,808 KB
testcase_28 AC 391 ms
499,116 KB
testcase_29 AC 1 ms
6,940 KB
testcase_30 AC 1 ms
6,944 KB
testcase_31 AC 3 ms
7,544 KB
testcase_32 AC 2 ms
7,536 KB
testcase_33 AC 14 ms
62,992 KB
testcase_34 AC 7 ms
36,240 KB
testcase_35 AC 12 ms
58,772 KB
testcase_36 AC 13 ms
64,888 KB
testcase_37 AC 15 ms
71,200 KB
testcase_38 AC 59 ms
129,432 KB
testcase_39 AC 75 ms
155,868 KB
testcase_40 AC 190 ms
291,420 KB
testcase_41 AC 120 ms
247,168 KB
testcase_42 AC 65 ms
182,880 KB
testcase_43 AC 63 ms
180,440 KB
testcase_44 MLE -
testcase_45 AC 48 ms
163,216 KB
testcase_46 AC 83 ms
217,576 KB
testcase_47 MLE -
testcase_48 AC 221 ms
380,920 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;

ll ncr[10010][10010];

void nCr(int n){
  REP(i,n+1)REP(j,i+1){
    if(j==0)ncr[i][j]=1;
    else ncr[i][j]=(ncr[i-1][j]+ncr[i-1][j-1])%mod;
  }
}


int main(){
  ll n;
  ll m;
  cin>>n;
  cin>>m;
  ll rest=0;
  rest=(n%(1000*m));
  rest-=rest%1000;
  rest/=1000;
  nCr(m);
  print(ncr[m][rest]);
}
0