結果

問題 No.129 お年玉(2)
ユーザー htensaihtensai
提出日時 2019-12-12 18:56:41
言語 Java21
(openjdk 21)
結果
AC  
実行時間 695 ms / 5,000 ms
コード長 677 bytes
コンパイル時間 2,324 ms
コンパイル使用メモリ 74,648 KB
実行使用メモリ 466,396 KB
最終ジャッジ日時 2024-06-25 12:36:04
合計ジャッジ時間 23,014 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 176 ms
77,896 KB
testcase_01 AC 695 ms
455,640 KB
testcase_02 AC 133 ms
53,904 KB
testcase_03 AC 135 ms
53,872 KB
testcase_04 AC 133 ms
53,964 KB
testcase_05 AC 392 ms
234,824 KB
testcase_06 AC 502 ms
363,200 KB
testcase_07 AC 635 ms
462,604 KB
testcase_08 AC 439 ms
263,652 KB
testcase_09 AC 525 ms
360,668 KB
testcase_10 AC 628 ms
462,772 KB
testcase_11 AC 426 ms
254,880 KB
testcase_12 AC 516 ms
364,480 KB
testcase_13 AC 524 ms
361,568 KB
testcase_14 AC 518 ms
362,320 KB
testcase_15 AC 480 ms
359,868 KB
testcase_16 AC 509 ms
362,076 KB
testcase_17 AC 547 ms
362,712 KB
testcase_18 AC 532 ms
360,396 KB
testcase_19 AC 544 ms
362,004 KB
testcase_20 AC 544 ms
361,980 KB
testcase_21 AC 685 ms
457,748 KB
testcase_22 AC 436 ms
266,004 KB
testcase_23 AC 646 ms
466,396 KB
testcase_24 AC 637 ms
463,272 KB
testcase_25 AC 434 ms
255,732 KB
testcase_26 AC 436 ms
261,268 KB
testcase_27 AC 428 ms
254,768 KB
testcase_28 AC 694 ms
464,216 KB
testcase_29 AC 136 ms
54,112 KB
testcase_30 AC 136 ms
54,008 KB
testcase_31 AC 138 ms
53,864 KB
testcase_32 AC 137 ms
54,172 KB
testcase_33 AC 148 ms
56,036 KB
testcase_34 AC 143 ms
54,036 KB
testcase_35 AC 146 ms
55,968 KB
testcase_36 AC 149 ms
56,144 KB
testcase_37 AC 151 ms
58,936 KB
testcase_38 AC 206 ms
94,496 KB
testcase_39 AC 253 ms
130,972 KB
testcase_40 AC 420 ms
240,900 KB
testcase_41 AC 309 ms
192,412 KB
testcase_42 AC 223 ms
115,632 KB
testcase_43 AC 218 ms
115,224 KB
testcase_44 AC 690 ms
458,980 KB
testcase_45 AC 182 ms
77,740 KB
testcase_46 AC 260 ms
131,600 KB
testcase_47 AC 685 ms
462,832 KB
testcase_48 AC 481 ms
364,344 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();
        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]) % 1000000000;
                }
            }
        }
        int count = (int)((n / 1000) % m);
        System.out.println(comb[m][count]);
    }
}
0