結果

問題 No.129 お年玉(2)
ユーザー crazybbb3crazybbb3
提出日時 2017-01-30 22:08:20
言語 Java
(openjdk 23)
結果
AC  
実行時間 639 ms / 5,000 ms
コード長 2,134 bytes
コンパイル時間 2,550 ms
コンパイル使用メモリ 77,396 KB
実行使用メモリ 45,016 KB
最終ジャッジ日時 2024-11-28 00:44:19
合計ジャッジ時間 15,269 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 96 ms
40,148 KB
testcase_01 AC 639 ms
44,956 KB
testcase_02 AC 46 ms
37,132 KB
testcase_03 AC 47 ms
37,304 KB
testcase_04 AC 47 ms
37,012 KB
testcase_05 AC 303 ms
44,576 KB
testcase_06 AC 216 ms
44,452 KB
testcase_07 AC 372 ms
45,016 KB
testcase_08 AC 431 ms
44,944 KB
testcase_09 AC 214 ms
44,296 KB
testcase_10 AC 415 ms
44,836 KB
testcase_11 AC 260 ms
44,572 KB
testcase_12 AC 73 ms
38,456 KB
testcase_13 AC 56 ms
37,492 KB
testcase_14 AC 218 ms
44,316 KB
testcase_15 AC 210 ms
44,504 KB
testcase_16 AC 260 ms
44,540 KB
testcase_17 AC 169 ms
43,528 KB
testcase_18 AC 379 ms
44,776 KB
testcase_19 AC 497 ms
44,816 KB
testcase_20 AC 279 ms
44,520 KB
testcase_21 AC 179 ms
43,808 KB
testcase_22 AC 271 ms
44,408 KB
testcase_23 AC 402 ms
44,720 KB
testcase_24 AC 540 ms
44,812 KB
testcase_25 AC 250 ms
44,524 KB
testcase_26 AC 375 ms
44,844 KB
testcase_27 AC 308 ms
44,652 KB
testcase_28 AC 259 ms
44,528 KB
testcase_29 AC 49 ms
37,136 KB
testcase_30 AC 48 ms
37,232 KB
testcase_31 AC 46 ms
36,784 KB
testcase_32 AC 48 ms
37,176 KB
testcase_33 AC 46 ms
37,112 KB
testcase_34 AC 50 ms
37,420 KB
testcase_35 AC 49 ms
37,204 KB
testcase_36 AC 51 ms
37,396 KB
testcase_37 AC 50 ms
36,940 KB
testcase_38 AC 129 ms
43,680 KB
testcase_39 AC 125 ms
43,604 KB
testcase_40 AC 157 ms
43,672 KB
testcase_41 AC 205 ms
44,464 KB
testcase_42 AC 150 ms
43,432 KB
testcase_43 AC 72 ms
38,560 KB
testcase_44 AC 573 ms
44,800 KB
testcase_45 AC 131 ms
43,420 KB
testcase_46 AC 74 ms
38,592 KB
testcase_47 AC 487 ms
44,936 KB
testcase_48 AC 453 ms
44,864 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