結果

問題 No.129 お年玉(2)
ユーザー htensaihtensai
提出日時 2019-12-12 18:55:11
言語 Java21
(openjdk 21)
結果
MLE  
実行時間 -
コード長 679 bytes
コンパイル時間 2,662 ms
コンパイル使用メモリ 75,008 KB
実行使用メモリ 745,716 KB
最終ジャッジ日時 2024-06-25 12:34:26
合計ジャッジ時間 29,118 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 195 ms
90,324 KB
testcase_01 MLE -
testcase_02 AC 137 ms
53,964 KB
testcase_03 AC 134 ms
54,088 KB
testcase_04 AC 134 ms
53,956 KB
testcase_05 AC 549 ms
463,116 KB
testcase_06 MLE -
testcase_07 MLE -
testcase_08 AC 592 ms
476,208 KB
testcase_09 MLE -
testcase_10 MLE -
testcase_11 AC 666 ms
459,600 KB
testcase_12 MLE -
testcase_13 MLE -
testcase_14 MLE -
testcase_15 AC 596 ms
493,568 KB
testcase_16 MLE -
testcase_17 MLE -
testcase_18 MLE -
testcase_19 MLE -
testcase_20 MLE -
testcase_21 MLE -
testcase_22 AC 593 ms
480,644 KB
testcase_23 MLE -
testcase_24 MLE -
testcase_25 AC 581 ms
460,268 KB
testcase_26 AC 584 ms
470,844 KB
testcase_27 AC 579 ms
457,816 KB
testcase_28 MLE -
testcase_29 AC 137 ms
53,812 KB
testcase_30 AC 133 ms
53,916 KB
testcase_31 AC 133 ms
54,036 KB
testcase_32 AC 134 ms
54,012 KB
testcase_33 AC 149 ms
58,612 KB
testcase_34 AC 140 ms
55,936 KB
testcase_35 AC 149 ms
59,144 KB
testcase_36 AC 148 ms
58,912 KB
testcase_37 AC 148 ms
58,692 KB
testcase_38 AC 240 ms
136,112 KB
testcase_39 AC 279 ms
191,572 KB
testcase_40 AC 561 ms
458,224 KB
testcase_41 AC 413 ms
362,804 KB
testcase_42 AC 243 ms
148,160 KB
testcase_43 AC 248 ms
146,412 KB
testcase_44 MLE -
testcase_45 AC 202 ms
115,492 KB
testcase_46 AC 338 ms
233,284 KB
testcase_47 MLE -
testcase_48 AC 593 ms
499,140 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner(System.in);
        long n = sc.nextLong();
        int m = sc.nextInt();
        long[][] comb = new long[m + 1][m + 1];
        for (int i = 0; i <= m; i++) {
            for (int j = 0; j <= i; j++) {
                if (j ==0 || j == i) {
                    comb[i][j] = 1;
                } else {
                    comb[i][j] = (comb[i - 1][j - 1] + comb[i - 1][j]) % 1000000000;
                }
            }
        }
        int count = (int)((n / 1000) % m);
        System.out.println(comb[m][count]);
    }
}
0