結果

問題 No.129 お年玉(2)
ユーザー tentententen
提出日時 2020-12-04 16:58:05
言語 Java21
(openjdk 21)
結果
MLE  
実行時間 -
コード長 648 bytes
コンパイル時間 2,372 ms
コンパイル使用メモリ 73,984 KB
実行使用メモリ 746,288 KB
最終ジャッジ日時 2024-09-15 03:33:11
合計ジャッジ時間 29,030 ms
ジャッジサーバーID
(参考情報)
judge6 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 187 ms
80,336 KB
testcase_01 MLE -
testcase_02 AC 183 ms
40,984 KB
testcase_03 AC 115 ms
41,048 KB
testcase_04 AC 119 ms
41,212 KB
testcase_05 AC 551 ms
453,468 KB
testcase_06 MLE -
testcase_07 MLE -
testcase_08 AC 573 ms
466,348 KB
testcase_09 MLE -
testcase_10 MLE -
testcase_11 AC 562 ms
449,084 KB
testcase_12 MLE -
testcase_13 MLE -
testcase_14 MLE -
testcase_15 AC 582 ms
484,084 KB
testcase_16 MLE -
testcase_17 MLE -
testcase_18 MLE -
testcase_19 MLE -
testcase_20 MLE -
testcase_21 MLE -
testcase_22 AC 564 ms
472,388 KB
testcase_23 MLE -
testcase_24 MLE -
testcase_25 AC 561 ms
449,552 KB
testcase_26 AC 571 ms
461,912 KB
testcase_27 AC 559 ms
447,792 KB
testcase_28 MLE -
testcase_29 AC 130 ms
44,360 KB
testcase_30 AC 126 ms
41,480 KB
testcase_31 AC 125 ms
41,248 KB
testcase_32 AC 119 ms
39,892 KB
testcase_33 AC 139 ms
47,684 KB
testcase_34 AC 133 ms
42,920 KB
testcase_35 AC 140 ms
47,848 KB
testcase_36 AC 144 ms
47,760 KB
testcase_37 AC 140 ms
47,704 KB
testcase_38 AC 234 ms
125,492 KB
testcase_39 AC 274 ms
178,240 KB
testcase_40 AC 548 ms
448,956 KB
testcase_41 AC 382 ms
353,292 KB
testcase_42 AC 236 ms
138,912 KB
testcase_43 AC 233 ms
135,552 KB
testcase_44 MLE -
testcase_45 AC 195 ms
101,736 KB
testcase_46 AC 330 ms
223,440 KB
testcase_47 MLE -
testcase_48 AC 579 ms
490,652 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    static final int MOD = 1000000000;
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        long n = sc.nextLong() / 1000;
        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]) % MOD;
                }
            }
        }
        System.out.println(comb[m][(int)(n % m)]);
    }
}
0