結果

問題 No.129 お年玉(2)
ユーザー tentententen
提出日時 2020-12-04 16:59:39
言語 Java21
(openjdk 21)
結果
AC  
実行時間 690 ms / 5,000 ms
コード長 646 bytes
コンパイル時間 2,888 ms
コンパイル使用メモリ 74,768 KB
実行使用メモリ 456,788 KB
最終ジャッジ日時 2024-09-15 03:35:11
合計ジャッジ時間 23,382 ms
ジャッジサーバーID
(参考情報)
judge6 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 174 ms
67,288 KB
testcase_01 AC 685 ms
445,884 KB
testcase_02 AC 131 ms
41,148 KB
testcase_03 AC 133 ms
42,924 KB
testcase_04 AC 137 ms
42,644 KB
testcase_05 AC 395 ms
225,288 KB
testcase_06 AC 506 ms
353,544 KB
testcase_07 AC 626 ms
452,824 KB
testcase_08 AC 436 ms
254,284 KB
testcase_09 AC 527 ms
351,024 KB
testcase_10 AC 636 ms
454,832 KB
testcase_11 AC 432 ms
245,212 KB
testcase_12 AC 511 ms
354,692 KB
testcase_13 AC 515 ms
351,528 KB
testcase_14 AC 509 ms
352,116 KB
testcase_15 AC 478 ms
350,972 KB
testcase_16 AC 500 ms
351,776 KB
testcase_17 AC 545 ms
352,560 KB
testcase_18 AC 530 ms
351,452 KB
testcase_19 AC 544 ms
352,432 KB
testcase_20 AC 544 ms
352,356 KB
testcase_21 AC 690 ms
448,300 KB
testcase_22 AC 441 ms
256,176 KB
testcase_23 AC 649 ms
456,788 KB
testcase_24 AC 633 ms
453,940 KB
testcase_25 AC 424 ms
246,160 KB
testcase_26 AC 429 ms
251,628 KB
testcase_27 AC 426 ms
245,148 KB
testcase_28 AC 678 ms
453,392 KB
testcase_29 AC 132 ms
40,952 KB
testcase_30 AC 134 ms
41,356 KB
testcase_31 AC 131 ms
41,080 KB
testcase_32 AC 133 ms
41,380 KB
testcase_33 AC 144 ms
43,696 KB
testcase_34 AC 136 ms
41,792 KB
testcase_35 AC 147 ms
43,424 KB
testcase_36 AC 145 ms
43,384 KB
testcase_37 AC 147 ms
47,688 KB
testcase_38 AC 206 ms
83,244 KB
testcase_39 AC 251 ms
121,532 KB
testcase_40 AC 419 ms
230,828 KB
testcase_41 AC 306 ms
179,196 KB
testcase_42 AC 222 ms
101,876 KB
testcase_43 AC 218 ms
101,596 KB
testcase_44 AC 681 ms
447,068 KB
testcase_45 AC 180 ms
67,152 KB
testcase_46 AC 261 ms
121,884 KB
testcase_47 AC 670 ms
453,816 KB
testcase_48 AC 478 ms
352,812 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();
        int[][] comb = new int[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