結果

問題 No.129 お年玉(2)
ユーザー alpha_virginisalpha_virginis
提出日時 2015-06-19 21:32:13
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 3,538 ms / 5,000 ms
コード長 693 bytes
コンパイル時間 2,003 ms
コンパイル使用メモリ 158,308 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-05 22:38:51
合計ジャッジ時間 35,728 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 22 ms
5,248 KB
testcase_01 AC 3,538 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 1,055 ms
5,376 KB
testcase_06 AC 526 ms
5,376 KB
testcase_07 AC 1,365 ms
5,376 KB
testcase_08 AC 1,577 ms
5,376 KB
testcase_09 AC 359 ms
5,376 KB
testcase_10 AC 1,546 ms
5,376 KB
testcase_11 AC 655 ms
5,376 KB
testcase_12 AC 11 ms
5,376 KB
testcase_13 AC 6 ms
5,376 KB
testcase_14 AC 502 ms
5,376 KB
testcase_15 AC 423 ms
5,376 KB
testcase_16 AC 703 ms
5,376 KB
testcase_17 AC 259 ms
5,376 KB
testcase_18 AC 1,362 ms
5,376 KB
testcase_19 AC 2,213 ms
5,376 KB
testcase_20 AC 931 ms
5,376 KB
testcase_21 AC 321 ms
5,376 KB
testcase_22 AC 857 ms
5,376 KB
testcase_23 AC 1,470 ms
5,376 KB
testcase_24 AC 2,600 ms
5,376 KB
testcase_25 AC 588 ms
5,376 KB
testcase_26 AC 1,152 ms
5,376 KB
testcase_27 AC 1,041 ms
5,376 KB
testcase_28 AC 818 ms
5,376 KB
testcase_29 AC 2 ms
5,376 KB
testcase_30 AC 2 ms
5,376 KB
testcase_31 AC 2 ms
5,376 KB
testcase_32 AC 2 ms
5,376 KB
testcase_33 AC 1 ms
5,376 KB
testcase_34 AC 3 ms
5,376 KB
testcase_35 AC 2 ms
5,376 KB
testcase_36 AC 5 ms
5,376 KB
testcase_37 AC 3 ms
5,376 KB
testcase_38 AC 83 ms
5,376 KB
testcase_39 AC 62 ms
5,376 KB
testcase_40 AC 174 ms
5,376 KB
testcase_41 AC 429 ms
5,376 KB
testcase_42 AC 198 ms
5,376 KB
testcase_43 AC 12 ms
5,376 KB
testcase_44 AC 2,702 ms
5,376 KB
testcase_45 AC 113 ms
5,376 KB
testcase_46 AC 13 ms
5,376 KB
testcase_47 AC 2,099 ms
5,376 KB
testcase_48 AC 1,627 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

long gcd(long a, long b) {
  if( a < b ) std::swap(a, b);
  while( b != 0 ) {
    a = a % b;
    std::swap(a, b);
  }
  return a;
}

long nCr(long a, long b) {
  long w[100000] = {};
  long ret = 1;
  long temp;
  long g;

  for(int i = 0; i < b; ++i) {
    w[i] = a - i;
  }
  for(int i = 1; i <= b; ++i) {
    temp = i;
    for(int j = 0; j < b; ++j) {
      g = gcd(w[j], temp);
      w[j] /= g;
      temp /= g;
    }
  }

  for(int i = 0; i < b; ++i) {
    ret *= w[i];
    ret %= 1000000000;
  }
  return ret;
}

int main() {
  
  long N, M;

  std::cin >> N;
  std::cin >> M;

  std::cout << nCr(M, (N-(N/M/1000*1000)*M)/1000) << std::endl;
  
  return 0;
}
	
0