結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
15,488 KB
testcase_01 AC 2 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 220 ms
48,512 KB
testcase_06 AC 369 ms
75,008 KB
testcase_07 AC 506 ms
91,136 KB
testcase_08 AC 224 ms
50,560 KB
testcase_09 AC 504 ms
85,760 KB
testcase_10 AC 567 ms
93,440 KB
testcase_11 AC 275 ms
62,976 KB
testcase_12 AC 179 ms
49,024 KB
testcase_13 AC 139 ms
46,080 KB
testcase_14 AC 413 ms
79,232 KB
testcase_15 AC 316 ms
67,712 KB
testcase_16 AC 311 ms
69,760 KB
testcase_17 AC 523 ms
88,192 KB
testcase_18 AC 495 ms
85,888 KB
testcase_19 AC 396 ms
71,168 KB
testcase_20 AC 408 ms
82,432 KB
testcase_21 AC 669 ms
104,576 KB
testcase_22 AC 338 ms
68,480 KB
testcase_23 AC 569 ms
96,128 KB
testcase_24 AC 233 ms
56,832 KB
testcase_25 AC 255 ms
60,672 KB
testcase_26 AC 356 ms
65,280 KB
testcase_27 AC 341 ms
65,280 KB
testcase_28 AC 549 ms
101,120 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 4 ms
5,376 KB
testcase_35 AC 6 ms
6,272 KB
testcase_36 AC 7 ms
6,948 KB
testcase_37 AC 8 ms
7,296 KB
testcase_38 AC 56 ms
22,912 KB
testcase_39 AC 96 ms
30,464 KB
testcase_40 AC 313 ms
62,336 KB
testcase_41 AC 159 ms
43,520 KB
testcase_42 AC 72 ms
25,472 KB
testcase_43 AC 54 ms
22,144 KB
testcase_44 AC 538 ms
86,784 KB
testcase_45 AC 41 ms
17,920 KB
testcase_46 AC 79 ms
27,392 KB
testcase_47 AC 649 ms
101,120 KB
testcase_48 AC 269 ms
55,424 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