結果

問題 No.129 お年玉(2)
ユーザー shi-moshi-mo
提出日時 2016-10-28 02:13:53
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 19 ms / 5,000 ms
コード長 486 bytes
コンパイル時間 1,511 ms
コンパイル使用メモリ 142,624 KB
実行使用メモリ 7,400 KB
最終ジャッジ日時 2024-06-12 04:45:09
合計ジャッジ時間 3,267 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 1 ms
6,944 KB
testcase_04 AC 1 ms
6,944 KB
testcase_05 AC 3 ms
6,940 KB
testcase_06 AC 13 ms
7,324 KB
testcase_07 AC 13 ms
7,384 KB
testcase_08 AC 3 ms
6,944 KB
testcase_09 AC 11 ms
7,320 KB
testcase_10 AC 11 ms
7,324 KB
testcase_11 AC 12 ms
7,332 KB
testcase_12 AC 2 ms
6,940 KB
testcase_13 AC 1 ms
6,944 KB
testcase_14 AC 14 ms
7,320 KB
testcase_15 AC 12 ms
7,348 KB
testcase_16 AC 16 ms
7,400 KB
testcase_17 AC 9 ms
7,300 KB
testcase_18 AC 10 ms
7,368 KB
testcase_19 AC 4 ms
6,940 KB
testcase_20 AC 17 ms
7,324 KB
testcase_21 AC 10 ms
7,324 KB
testcase_22 AC 11 ms
7,356 KB
testcase_23 AC 13 ms
7,296 KB
testcase_24 AC 2 ms
6,940 KB
testcase_25 AC 14 ms
7,316 KB
testcase_26 AC 6 ms
6,940 KB
testcase_27 AC 6 ms
6,940 KB
testcase_28 AC 19 ms
7,332 KB
testcase_29 AC 1 ms
6,940 KB
testcase_30 AC 1 ms
6,944 KB
testcase_31 AC 1 ms
6,940 KB
testcase_32 AC 2 ms
6,940 KB
testcase_33 AC 1 ms
6,944 KB
testcase_34 AC 1 ms
6,940 KB
testcase_35 AC 1 ms
6,940 KB
testcase_36 AC 2 ms
6,940 KB
testcase_37 AC 1 ms
6,940 KB
testcase_38 AC 4 ms
6,944 KB
testcase_39 AC 4 ms
6,944 KB
testcase_40 AC 7 ms
6,940 KB
testcase_41 AC 7 ms
6,940 KB
testcase_42 AC 3 ms
6,944 KB
testcase_43 AC 2 ms
6,944 KB
testcase_44 AC 4 ms
6,944 KB
testcase_45 AC 3 ms
6,940 KB
testcase_46 AC 2 ms
6,940 KB
testcase_47 AC 9 ms
7,332 KB
testcase_48 AC 3 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import std.stdio;
import std.math;
import std.bigint;

void main() {
    ulong n, m; readf("%s\n%s", &n, &m);

    ulong r = (n / 1000) % m;
    if (0 == r) {
        writeln(1);
        return;
    }
    if (m-r < r && 0 < m-r) { r = m-r; }
    writeln(c(m, r) % 10.pow(9));
}

BigInt c(ulong n, ulong k) {
    return factPart(n, k) / factPart(k, k);
}

BigInt factPart(ulong n, ulong k) {
    BigInt res = BigInt(1);
    foreach (i; 0..k) {
        res *= n-i;
    }
    return res;
}
0