結果

問題 No.129 お年玉(2)
ユーザー te-shte-sh
提出日時 2016-08-30 23:06:47
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 333 ms / 5,000 ms
コード長 658 bytes
コンパイル時間 903 ms
コンパイル使用メモリ 111,136 KB
実行使用メモリ 413,312 KB
最終ジャッジ日時 2024-06-12 03:54:39
合計ジャッジ時間 8,269 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 16 ms
25,452 KB
testcase_01 AC 333 ms
413,312 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 101 ms
173,952 KB
testcase_06 AC 163 ms
271,616 KB
testcase_07 AC 250 ms
331,520 KB
testcase_08 AC 134 ms
227,968 KB
testcase_09 AC 185 ms
305,536 KB
testcase_10 AC 224 ms
343,168 KB
testcase_11 AC 132 ms
218,624 KB
testcase_12 AC 165 ms
283,904 KB
testcase_13 AC 183 ms
296,960 KB
testcase_14 AC 169 ms
286,828 KB
testcase_15 AC 144 ms
237,184 KB
testcase_16 AC 157 ms
269,056 KB
testcase_17 AC 206 ms
325,040 KB
testcase_18 AC 191 ms
306,612 KB
testcase_19 AC 210 ms
326,912 KB
testcase_20 AC 207 ms
324,224 KB
testcase_21 AC 288 ms
403,760 KB
testcase_22 AC 137 ms
230,400 KB
testcase_23 AC 237 ms
353,348 KB
testcase_24 AC 224 ms
339,712 KB
testcase_25 AC 132 ms
220,160 KB
testcase_26 AC 140 ms
225,408 KB
testcase_27 AC 134 ms
218,496 KB
testcase_28 AC 295 ms
407,620 KB
testcase_29 AC 1 ms
5,376 KB
testcase_30 AC 1 ms
5,376 KB
testcase_31 AC 1 ms
5,376 KB
testcase_32 AC 1 ms
5,376 KB
testcase_33 AC 4 ms
5,632 KB
testcase_34 AC 2 ms
5,376 KB
testcase_35 AC 3 ms
5,376 KB
testcase_36 AC 4 ms
5,504 KB
testcase_37 AC 5 ms
6,400 KB
testcase_38 AC 32 ms
49,792 KB
testcase_39 AC 48 ms
74,368 KB
testcase_40 AC 124 ms
204,672 KB
testcase_41 AC 73 ms
126,592 KB
testcase_42 AC 35 ms
56,320 KB
testcase_43 AC 36 ms
55,296 KB
testcase_44 AC 294 ms
409,856 KB
testcase_45 AC 20 ms
32,128 KB
testcase_46 AC 50 ms
83,200 KB
testcase_47 AC 281 ms
396,032 KB
testcase_48 AC 144 ms
240,256 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import std.algorithm, std.array, std.container, std.range;
import std.string, std.conv;
import std.math, std.bigint, std.bitmanip, std.random;
import std.stdio, std.typecons;

const auto mod = 10^^9;

void main()
{
  auto n = readln.chomp.to!long / 1000;
  auto m = readln.chomp.to!long;

  auto a = n - (n / m) * m;
  writeln(combination(m, a));
}

long combination(long n, long r)
{
  auto memo = new long [][](n + 1);
  memo[0] = [1];
  foreach (i; 1..n + 1) {
    memo[i] = new long[](i + 1);
    memo[i][0] = 1;
    memo[i][i] = 1;
    foreach (j; 1..i) {
      memo[i][j] = (memo[i - 1][j - 1] + memo[i - 1][j]) % mod;
    }
  }
  return memo[n][r];
}
0