結果

問題 No.129 お年玉(2)
ユーザー tnakao0123tnakao0123
提出日時 2016-03-21 01:31:28
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 206 ms / 5,000 ms
コード長 897 bytes
コンパイル時間 776 ms
コンパイル使用メモリ 84,852 KB
実行使用メモリ 236,928 KB
最終ジャッジ日時 2024-05-05 22:59:27
合計ジャッジ時間 6,908 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 16 ms
22,016 KB
testcase_01 AC 206 ms
236,928 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 91 ms
108,800 KB
testcase_06 AC 139 ms
162,432 KB
testcase_07 AC 166 ms
194,816 KB
testcase_08 AC 117 ms
138,624 KB
testcase_09 AC 157 ms
180,736 KB
testcase_10 AC 172 ms
201,216 KB
testcase_11 AC 115 ms
133,376 KB
testcase_12 AC 145 ms
169,216 KB
testcase_13 AC 149 ms
176,128 KB
testcase_14 AC 145 ms
170,880 KB
testcase_15 AC 123 ms
143,744 KB
testcase_16 AC 138 ms
161,024 KB
testcase_17 AC 162 ms
191,616 KB
testcase_18 AC 154 ms
181,504 KB
testcase_19 AC 164 ms
192,256 KB
testcase_20 AC 162 ms
190,976 KB
testcase_21 AC 201 ms
232,320 KB
testcase_22 AC 119 ms
140,032 KB
testcase_23 AC 179 ms
206,720 KB
testcase_24 AC 170 ms
199,424 KB
testcase_25 AC 115 ms
134,144 KB
testcase_26 AC 118 ms
137,088 KB
testcase_27 AC 117 ms
133,376 KB
testcase_28 AC 205 ms
234,240 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 1 ms
5,376 KB
testcase_33 AC 5 ms
7,680 KB
testcase_34 AC 3 ms
5,632 KB
testcase_35 AC 5 ms
7,296 KB
testcase_36 AC 5 ms
7,808 KB
testcase_37 AC 5 ms
8,832 KB
testcase_38 AC 31 ms
37,376 KB
testcase_39 AC 46 ms
52,096 KB
testcase_40 AC 109 ms
125,824 KB
testcase_41 AC 71 ms
82,176 KB
testcase_42 AC 35 ms
41,088 KB
testcase_43 AC 31 ms
40,704 KB
testcase_44 AC 201 ms
235,392 KB
testcase_45 AC 20 ms
26,368 KB
testcase_46 AC 49 ms
57,088 KB
testcase_47 AC 200 ms
228,608 KB
testcase_48 AC 126 ms
145,280 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