結果

問題 No.129 お年玉(2)
ユーザー tentententen
提出日時 2022-10-14 08:58:01
言語 Java21
(openjdk 21)
結果
AC  
実行時間 586 ms / 5,000 ms
コード長 1,410 bytes
コンパイル時間 2,238 ms
コンパイル使用メモリ 77,680 KB
実行使用メモリ 468,932 KB
最終ジャッジ日時 2024-06-26 12:27:41
合計ジャッジ時間 18,217 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 94 ms
65,732 KB
testcase_01 AC 586 ms
457,860 KB
testcase_02 AC 52 ms
44,272 KB
testcase_03 AC 50 ms
37,072 KB
testcase_04 AC 50 ms
36,572 KB
testcase_05 AC 303 ms
228,388 KB
testcase_06 AC 409 ms
362,504 KB
testcase_07 AC 449 ms
364,248 KB
testcase_08 AC 345 ms
254,844 KB
testcase_09 AC 431 ms
365,204 KB
testcase_10 AC 539 ms
468,672 KB
testcase_11 AC 332 ms
247,572 KB
testcase_12 AC 415 ms
368,460 KB
testcase_13 AC 422 ms
365,996 KB
testcase_14 AC 414 ms
365,612 KB
testcase_15 AC 354 ms
263,412 KB
testcase_16 AC 401 ms
361,608 KB
testcase_17 AC 436 ms
364,880 KB
testcase_18 AC 434 ms
364,560 KB
testcase_19 AC 443 ms
366,812 KB
testcase_20 AC 438 ms
367,576 KB
testcase_21 AC 575 ms
461,968 KB
testcase_22 AC 335 ms
256,780 KB
testcase_23 AC 541 ms
468,932 KB
testcase_24 AC 450 ms
364,560 KB
testcase_25 AC 335 ms
247,188 KB
testcase_26 AC 343 ms
251,476 KB
testcase_27 AC 338 ms
245,588 KB
testcase_28 AC 571 ms
459,668 KB
testcase_29 AC 51 ms
44,248 KB
testcase_30 AC 51 ms
37,120 KB
testcase_31 AC 50 ms
37,200 KB
testcase_32 AC 52 ms
37,104 KB
testcase_33 AC 76 ms
40,428 KB
testcase_34 AC 57 ms
37,816 KB
testcase_35 AC 62 ms
38,944 KB
testcase_36 AC 73 ms
39,712 KB
testcase_37 AC 67 ms
41,224 KB
testcase_38 AC 119 ms
80,080 KB
testcase_39 AC 163 ms
121,692 KB
testcase_40 AC 329 ms
228,928 KB
testcase_41 AC 219 ms
185,440 KB
testcase_42 AC 130 ms
105,012 KB
testcase_43 AC 130 ms
101,640 KB
testcase_44 AC 581 ms
457,512 KB
testcase_45 AC 100 ms
68,848 KB
testcase_46 AC 169 ms
122,352 KB
testcase_47 AC 566 ms
455,892 KB
testcase_48 AC 346 ms
266,928 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    static final int MOD = 1000000000;
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        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)]);
    }
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public double nextDouble() throws Exception {
        return Double.parseDouble(next());
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
    
}
0