結果

問題 No.129 お年玉(2)
ユーザー temptemp
提出日時 2015-02-16 13:24:26
言語 C++11
(gcc 13.3.0)
結果
AC  
実行時間 710 ms / 5,000 ms
コード長 1,245 bytes
コンパイル時間 589 ms
コンパイル使用メモリ 70,332 KB
実行使用メモリ 104,576 KB
最終ジャッジ日時 2024-11-27 23:42:03
合計ジャッジ時間 13,825 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
15,488 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 1 ms
5,248 KB
testcase_03 AC 1 ms
5,248 KB
testcase_04 AC 1 ms
5,248 KB
testcase_05 AC 222 ms
48,512 KB
testcase_06 AC 370 ms
74,880 KB
testcase_07 AC 531 ms
91,136 KB
testcase_08 AC 225 ms
50,688 KB
testcase_09 AC 503 ms
85,888 KB
testcase_10 AC 581 ms
93,312 KB
testcase_11 AC 285 ms
62,976 KB
testcase_12 AC 187 ms
48,896 KB
testcase_13 AC 134 ms
46,336 KB
testcase_14 AC 420 ms
79,232 KB
testcase_15 AC 326 ms
67,712 KB
testcase_16 AC 318 ms
69,632 KB
testcase_17 AC 556 ms
88,192 KB
testcase_18 AC 524 ms
85,632 KB
testcase_19 AC 406 ms
71,296 KB
testcase_20 AC 427 ms
82,432 KB
testcase_21 AC 710 ms
104,576 KB
testcase_22 AC 346 ms
68,352 KB
testcase_23 AC 601 ms
96,256 KB
testcase_24 AC 237 ms
56,704 KB
testcase_25 AC 258 ms
60,544 KB
testcase_26 AC 349 ms
65,280 KB
testcase_27 AC 345 ms
65,152 KB
testcase_28 AC 574 ms
101,248 KB
testcase_29 AC 2 ms
5,248 KB
testcase_30 AC 1 ms
5,248 KB
testcase_31 AC 2 ms
5,248 KB
testcase_32 AC 2 ms
5,248 KB
testcase_33 AC 1 ms
5,248 KB
testcase_34 AC 4 ms
5,248 KB
testcase_35 AC 5 ms
6,272 KB
testcase_36 AC 7 ms
6,784 KB
testcase_37 AC 8 ms
7,424 KB
testcase_38 AC 57 ms
23,040 KB
testcase_39 AC 100 ms
30,336 KB
testcase_40 AC 326 ms
62,208 KB
testcase_41 AC 168 ms
43,520 KB
testcase_42 AC 72 ms
25,344 KB
testcase_43 AC 55 ms
22,144 KB
testcase_44 AC 548 ms
86,784 KB
testcase_45 AC 42 ms
18,048 KB
testcase_46 AC 77 ms
27,264 KB
testcase_47 AC 687 ms
101,120 KB
testcase_48 AC 272 ms
55,680 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <vector>
#include <queue>
#include <deque>
#include <stack>
#include <algorithm>
#include <functional>
#include <iostream>
#include <cstdio>
#include <cmath>
#include <cstdlib>
#include <ctime>
#include <cctype>
#include <string>

using namespace std;

typedef long long ll;

#define MODN 1000000000

int memo[10001][10001];
ll combi(ll a, ll b) {
  if (a < b*2) b = a-b;
  if (b == 1) return a;
  if (a == b) return 1;
  if (a < 10001 && b < 10001 && memo[a][b]) return ll(memo[a][b]);
  if (a < 10001 && b < 10001) {
    return memo[a][b] = int((combi(a-1, b-1)+combi(a-1, b))%MODN);
  }else {
    return memo[a][b] = int((combi(a-1, b-1)+combi(a-1, b))%MODN);
  }
}


int main() {
  ll n, m;
  cin >> n;
  cin >> m;
  ll x = (n-((n/m)-((n/m)%1000))*m)/1000;
  // ll ans = 0, u = 1, d = 1;
  // for (ll i = m, j = 1; j <= x; i--, j++) {
  //   if (i%j == 0) {
  //     u *= i/j;
  //   }else if ((u*i)%j == 0) {
  //     u = u*i/j;
  //   }else if ((u*i)%(d*j) == 0) {
  //     u = (u*i)/(d*j);
  //     d = 1;
  //   }else {
  //     u *= i;
  //     d *= j;
  //   }
  // }
  // ans = u/d;
  // std::cout << x << std::endl;
  if (x == 0) {
    std::cout << 1 << std::endl;
  }else {
    std::cout << combi(m, x) << std::endl;
  }
}
0