結果

問題 No.129 お年玉(2)
ユーザー crazybbb3crazybbb3
提出日時 2017-01-30 22:08:20
言語 Java21
(openjdk 21)
結果
AC  
実行時間 633 ms / 5,000 ms
コード長 2,134 bytes
コンパイル時間 2,385 ms
コンパイル使用メモリ 78,116 KB
実行使用メモリ 44,900 KB
最終ジャッジ日時 2024-05-05 23:14:28
合計ジャッジ時間 14,608 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 92 ms
39,872 KB
testcase_01 AC 633 ms
44,476 KB
testcase_02 AC 47 ms
37,020 KB
testcase_03 AC 48 ms
37,052 KB
testcase_04 AC 48 ms
37,320 KB
testcase_05 AC 289 ms
44,520 KB
testcase_06 AC 216 ms
44,356 KB
testcase_07 AC 369 ms
44,524 KB
testcase_08 AC 420 ms
44,824 KB
testcase_09 AC 212 ms
44,412 KB
testcase_10 AC 439 ms
44,824 KB
testcase_11 AC 265 ms
44,372 KB
testcase_12 AC 75 ms
38,060 KB
testcase_13 AC 53 ms
37,428 KB
testcase_14 AC 209 ms
44,360 KB
testcase_15 AC 209 ms
44,452 KB
testcase_16 AC 257 ms
44,340 KB
testcase_17 AC 170 ms
43,660 KB
testcase_18 AC 384 ms
44,780 KB
testcase_19 AC 489 ms
44,836 KB
testcase_20 AC 271 ms
44,428 KB
testcase_21 AC 176 ms
43,736 KB
testcase_22 AC 269 ms
44,276 KB
testcase_23 AC 394 ms
44,468 KB
testcase_24 AC 521 ms
44,820 KB
testcase_25 AC 244 ms
44,244 KB
testcase_26 AC 367 ms
44,864 KB
testcase_27 AC 299 ms
44,636 KB
testcase_28 AC 249 ms
44,360 KB
testcase_29 AC 45 ms
37,216 KB
testcase_30 AC 47 ms
37,092 KB
testcase_31 AC 45 ms
36,932 KB
testcase_32 AC 45 ms
36,880 KB
testcase_33 AC 45 ms
36,928 KB
testcase_34 AC 48 ms
37,324 KB
testcase_35 AC 45 ms
36,892 KB
testcase_36 AC 50 ms
37,284 KB
testcase_37 AC 48 ms
37,120 KB
testcase_38 AC 123 ms
43,452 KB
testcase_39 AC 122 ms
43,376 KB
testcase_40 AC 155 ms
43,760 KB
testcase_41 AC 213 ms
44,356 KB
testcase_42 AC 151 ms
43,528 KB
testcase_43 AC 62 ms
38,780 KB
testcase_44 AC 561 ms
44,752 KB
testcase_45 AC 132 ms
43,452 KB
testcase_46 AC 73 ms
38,816 KB
testcase_47 AC 482 ms
44,900 KB
testcase_48 AC 442 ms
44,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.io.PrintWriter;
import java.math.BigInteger;
import java.util.Arrays;
import java.util.StringTokenizer;

public class Main {

    void solve() throws IOException {
        long n = nl();
        long m = nl();

        n %= m * 1000;
        n /= 1000;

        BigInteger ans = BigInteger.ONE;
        for (int i = 0; i < n; i++) {
            BigInteger x = new BigInteger(String.valueOf(m - i));
            ans = ans.multiply(x);
        }
        for (int i = 1; i <= n; i++) {
            BigInteger x = new BigInteger(String.valueOf(i));
            ans = ans.divide(x);
        }
        ans = ans.mod(new BigInteger("1000000000"));

        out.println(ans);
    }

    String ns() throws IOException {
        while (!tok.hasMoreTokens()) {
            tok = new StringTokenizer(in.readLine(), " ");
        }
        return tok.nextToken();
    }

    int ni() throws IOException {
        return Integer.parseInt(ns());
    }

    long nl() throws IOException {
        return Long.parseLong(ns());
    }

    double nd() throws IOException {
        return Double.parseDouble(ns());
    }

    String[] nsa(int n) throws IOException {
        String[] res = new String[n];
        for (int i = 0; i < n; i++) {
            res[i] = ns();
        }
        return res;
    }

    int[] nia(int n) throws IOException {
        int[] res = new int[n];
        for (int i = 0; i < n; i++) {
            res[i] = ni();
        }
        return res;
    }

    long[] nla(int n) throws IOException {
        long[] res = new long[n];
        for (int i = 0; i < n; i++) {
            res[i] = nl();
        }
        return res;
    }

    static BufferedReader in;
    static PrintWriter out;
    static StringTokenizer tok;

    public static void main(String[] args) throws IOException {
        in = new BufferedReader(new InputStreamReader(System.in));
        out = new PrintWriter(System.out);
        tok = new StringTokenizer("");
        Main main = new Main();
        main.solve();
        out.close();
    }
}
0