結果

問題 No.129 お年玉(2)
ユーザー kk
提出日時 2020-09-08 20:41:27
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 332 ms / 5,000 ms
コード長 660 bytes
コンパイル時間 2,118 ms
コンパイル使用メモリ 201,360 KB
実行使用メモリ 378,332 KB
最終ジャッジ日時 2024-11-30 07:26:36
合計ジャッジ時間 11,276 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
89,632 KB
testcase_01 AC 332 ms
378,332 KB
testcase_02 AC 3 ms
6,820 KB
testcase_03 AC 2 ms
6,820 KB
testcase_04 AC 2 ms
6,816 KB
testcase_05 AC 149 ms
249,312 KB
testcase_06 AC 220 ms
303,172 KB
testcase_07 AC 263 ms
335,148 KB
testcase_08 AC 188 ms
279,580 KB
testcase_09 AC 244 ms
321,384 KB
testcase_10 AC 270 ms
341,944 KB
testcase_11 AC 182 ms
274,680 KB
testcase_12 AC 229 ms
310,088 KB
testcase_13 AC 239 ms
317,208 KB
testcase_14 AC 231 ms
311,068 KB
testcase_15 AC 195 ms
284,048 KB
testcase_16 AC 218 ms
301,536 KB
testcase_17 AC 257 ms
332,552 KB
testcase_18 AC 247 ms
321,932 KB
testcase_19 AC 260 ms
333,472 KB
testcase_20 AC 258 ms
332,272 KB
testcase_21 AC 314 ms
373,616 KB
testcase_22 AC 191 ms
280,544 KB
testcase_23 AC 281 ms
347,356 KB
testcase_24 AC 268 ms
339,844 KB
testcase_25 AC 183 ms
275,228 KB
testcase_26 AC 187 ms
278,064 KB
testcase_27 AC 182 ms
273,904 KB
testcase_28 AC 314 ms
374,648 KB
testcase_29 AC 2 ms
6,816 KB
testcase_30 AC 2 ms
6,816 KB
testcase_31 AC 3 ms
6,816 KB
testcase_32 AC 2 ms
6,816 KB
testcase_33 AC 10 ms
34,304 KB
testcase_34 AC 6 ms
19,932 KB
testcase_35 AC 9 ms
32,300 KB
testcase_36 AC 9 ms
32,372 KB
testcase_37 AC 11 ms
38,292 KB
testcase_38 AC 53 ms
130,520 KB
testcase_39 AC 74 ms
161,452 KB
testcase_40 AC 172 ms
265,612 KB
testcase_41 AC 114 ms
214,536 KB
testcase_42 AC 58 ms
140,660 KB
testcase_43 AC 57 ms
136,852 KB
testcase_44 AC 315 ms
375,592 KB
testcase_45 AC 36 ms
101,884 KB
testcase_46 AC 79 ms
171,620 KB
testcase_47 AC 304 ms
369,140 KB
testcase_48 AC 195 ms
286,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

#define REP(i,n) for(int i=0; i<(int)(n); i++)
#define FOR(i,b,e) for (int i=(int)(b); i<(int)(e); i++)
#define ALL(x) (x).begin(), (x).end()

const double PI = acos(-1);
const int MOD = 1e9;

int comb[10000+1][10000+1];

int main() {
  ios_base::sync_with_stdio(0);
  cin.tie(0);

  long long n;
  int m;
  cin >> n >> m;

  n /= 1000;
  n %= m;

  for (int i = 0; i <= m; i++) {
    comb[i][0] = comb[i][i] = 1;
    for (int j = 1; j < i; j++) {
      comb[i][j] = comb[i-1][j-1] + comb[i-1][j];
      if (comb[i][j] >= MOD)
        comb[i][j] -= MOD;
    }
  }

  cout << comb[m][n] << endl;
  
  return 0;
}
0