結果

問題 No.129 お年玉(2)
ユーザー tentententen
提出日時 2022-08-10 13:17:10
言語 Java21
(openjdk 21)
結果
AC  
実行時間 642 ms / 5,000 ms
コード長 1,362 bytes
コンパイル時間 2,305 ms
コンパイル使用メモリ 77,580 KB
実行使用メモリ 475,248 KB
最終ジャッジ日時 2024-09-20 22:26:35
合計ジャッジ時間 20,333 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 95 ms
75,340 KB
testcase_01 AC 642 ms
465,636 KB
testcase_02 AC 52 ms
50,352 KB
testcase_03 AC 52 ms
50,264 KB
testcase_04 AC 53 ms
50,428 KB
testcase_05 AC 297 ms
237,808 KB
testcase_06 AC 452 ms
364,284 KB
testcase_07 AC 468 ms
370,252 KB
testcase_08 AC 330 ms
261,412 KB
testcase_09 AC 451 ms
364,500 KB
testcase_10 AC 586 ms
473,800 KB
testcase_11 AC 341 ms
253,808 KB
testcase_12 AC 442 ms
372,136 KB
testcase_13 AC 450 ms
372,224 KB
testcase_14 AC 439 ms
369,872 KB
testcase_15 AC 339 ms
269,692 KB
testcase_16 AC 433 ms
368,044 KB
testcase_17 AC 465 ms
372,948 KB
testcase_18 AC 458 ms
370,700 KB
testcase_19 AC 473 ms
370,700 KB
testcase_20 AC 477 ms
371,432 KB
testcase_21 AC 619 ms
465,916 KB
testcase_22 AC 356 ms
262,564 KB
testcase_23 AC 595 ms
475,248 KB
testcase_24 AC 577 ms
472,600 KB
testcase_25 AC 333 ms
255,428 KB
testcase_26 AC 334 ms
259,688 KB
testcase_27 AC 336 ms
253,756 KB
testcase_28 AC 616 ms
466,336 KB
testcase_29 AC 51 ms
50,240 KB
testcase_30 AC 51 ms
50,116 KB
testcase_31 AC 52 ms
50,296 KB
testcase_32 AC 49 ms
50,380 KB
testcase_33 AC 72 ms
52,464 KB
testcase_34 AC 55 ms
50,328 KB
testcase_35 AC 63 ms
52,032 KB
testcase_36 AC 75 ms
53,168 KB
testcase_37 AC 67 ms
53,024 KB
testcase_38 AC 119 ms
91,072 KB
testcase_39 AC 161 ms
131,832 KB
testcase_40 AC 317 ms
237,764 KB
testcase_41 AC 208 ms
191,140 KB
testcase_42 AC 126 ms
111,736 KB
testcase_43 AC 131 ms
111,644 KB
testcase_44 AC 617 ms
465,648 KB
testcase_45 AC 98 ms
75,156 KB
testcase_46 AC 165 ms
132,164 KB
testcase_47 AC 602 ms
465,504 KB
testcase_48 AC 354 ms
273,256 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("");
    
    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