結果

問題 No.129 お年玉(2)
ユーザー tnakao0123tnakao0123
提出日時 2016-03-21 01:31:28
言語 C++11
(gcc 13.3.0)
結果
AC  
実行時間 174 ms / 5,000 ms
コード長 897 bytes
コンパイル時間 771 ms
コンパイル使用メモリ 83,388 KB
実行使用メモリ 237,056 KB
最終ジャッジ日時 2024-11-28 00:23:41
合計ジャッジ時間 5,843 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 17 ms
22,144 KB
testcase_01 AC 174 ms
237,056 KB
testcase_02 AC 1 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 1 ms
5,248 KB
testcase_05 AC 81 ms
108,544 KB
testcase_06 AC 110 ms
162,304 KB
testcase_07 AC 131 ms
194,816 KB
testcase_08 AC 98 ms
138,496 KB
testcase_09 AC 121 ms
180,864 KB
testcase_10 AC 132 ms
201,088 KB
testcase_11 AC 96 ms
133,504 KB
testcase_12 AC 115 ms
169,088 KB
testcase_13 AC 119 ms
176,000 KB
testcase_14 AC 115 ms
170,880 KB
testcase_15 AC 100 ms
143,488 KB
testcase_16 AC 109 ms
160,768 KB
testcase_17 AC 126 ms
191,488 KB
testcase_18 AC 121 ms
181,632 KB
testcase_19 AC 127 ms
192,256 KB
testcase_20 AC 125 ms
190,848 KB
testcase_21 AC 159 ms
232,192 KB
testcase_22 AC 99 ms
140,032 KB
testcase_23 AC 135 ms
206,592 KB
testcase_24 AC 134 ms
199,296 KB
testcase_25 AC 96 ms
134,144 KB
testcase_26 AC 96 ms
137,216 KB
testcase_27 AC 95 ms
133,376 KB
testcase_28 AC 162 ms
233,984 KB
testcase_29 AC 2 ms
5,248 KB
testcase_30 AC 1 ms
5,248 KB
testcase_31 AC 1 ms
5,248 KB
testcase_32 AC 2 ms
5,248 KB
testcase_33 AC 5 ms
7,808 KB
testcase_34 AC 3 ms
5,632 KB
testcase_35 AC 3 ms
7,552 KB
testcase_36 AC 4 ms
7,808 KB
testcase_37 AC 5 ms
8,576 KB
testcase_38 AC 28 ms
37,248 KB
testcase_39 AC 41 ms
52,224 KB
testcase_40 AC 90 ms
125,824 KB
testcase_41 AC 65 ms
81,920 KB
testcase_42 AC 33 ms
41,088 KB
testcase_43 AC 32 ms
40,704 KB
testcase_44 AC 159 ms
235,136 KB
testcase_45 AC 19 ms
26,496 KB
testcase_46 AC 46 ms
56,960 KB
testcase_47 AC 153 ms
228,480 KB
testcase_48 AC 104 ms
145,152 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/* -*- coding: utf-8 -*-
 *
 * 129.cc: No.129 お年玉(2) - yukicoder
 */

#include<cstdio>
#include<cstdlib>
#include<cstring>
#include<cmath>
#include<iostream>
#include<string>
#include<vector>
#include<map>
#include<set>
#include<stack>
#include<list>
#include<queue>
#include<deque>
#include<algorithm>
#include<numeric>
#include<utility>
#include<complex>
#include<functional>
 
using namespace std;

/* constant */

const int MAX_M = 10000;
const int MOD = 1000000000;

/* typedef */

typedef long long ll;

/* global variables */

int combs[MAX_M + 1][MAX_M + 1];

/* subroutines */

/* main */

int main() {
  ll n;
  int m;
  cin >> n >> m;

  int k = (n / 1000) % m;

  for (int i = 0; i <= m; i++) {
    combs[i][0] = combs[i][i] = 1;
    for (int j = 1; j < i; j++)
      combs[i][j] = (combs[i - 1][j - 1] + combs[i - 1][j]) % MOD;
  }

  printf("%d\n", combs[m][k]);
  return 0;
}
0