結果

問題 No.129 お年玉(2)
ユーザー alpha_virginisalpha_virginis
提出日時 2015-06-19 21:34:23
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 1,475 ms / 5,000 ms
コード長 725 bytes
コンパイル時間 1,786 ms
コンパイル使用メモリ 158,300 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-05 22:47:14
合計ジャッジ時間 21,832 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 14 ms
5,248 KB
testcase_01 AC 1,474 ms
5,376 KB
testcase_02 AC 3 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 553 ms
5,376 KB
testcase_06 AC 333 ms
5,376 KB
testcase_07 AC 734 ms
5,376 KB
testcase_08 AC 789 ms
5,376 KB
testcase_09 AC 240 ms
5,376 KB
testcase_10 AC 882 ms
5,376 KB
testcase_11 AC 408 ms
5,376 KB
testcase_12 AC 9 ms
5,376 KB
testcase_13 AC 4 ms
5,376 KB
testcase_14 AC 326 ms
5,376 KB
testcase_15 AC 278 ms
5,376 KB
testcase_16 AC 441 ms
5,376 KB
testcase_17 AC 178 ms
5,376 KB
testcase_18 AC 766 ms
5,376 KB
testcase_19 AC 1,103 ms
5,376 KB
testcase_20 AC 585 ms
5,376 KB
testcase_21 AC 218 ms
5,376 KB
testcase_22 AC 500 ms
5,376 KB
testcase_23 AC 837 ms
5,376 KB
testcase_24 AC 1,202 ms
5,376 KB
testcase_25 AC 383 ms
5,376 KB
testcase_26 AC 622 ms
5,376 KB
testcase_27 AC 567 ms
5,376 KB
testcase_28 AC 508 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 2 ms
5,376 KB
testcase_34 AC 3 ms
5,376 KB
testcase_35 AC 2 ms
5,376 KB
testcase_36 AC 4 ms
5,376 KB
testcase_37 AC 2 ms
5,376 KB
testcase_38 AC 53 ms
5,376 KB
testcase_39 AC 43 ms
5,376 KB
testcase_40 AC 118 ms
5,376 KB
testcase_41 AC 252 ms
5,376 KB
testcase_42 AC 116 ms
5,376 KB
testcase_43 AC 10 ms
5,376 KB
testcase_44 AC 1,475 ms
5,376 KB
testcase_45 AC 68 ms
5,376 KB
testcase_46 AC 10 ms
5,376 KB
testcase_47 AC 1,224 ms
5,376 KB
testcase_48 AC 808 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 = b-1; j >= 0; --j) {
      g = gcd(w[j], temp);
      w[j] /= g;
      temp /= g;
      if( temp == 1 ) break;
    }
  }

  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