結果

問題 No.129 お年玉(2)
ユーザー yuki2006yuki2006
提出日時 2015-01-16 17:41:46
言語 Java21
(openjdk 21)
結果
AC  
実行時間 292 ms / 5,000 ms
コード長 670 bytes
コンパイル時間 2,988 ms
コンパイル使用メモリ 75,256 KB
実行使用メモリ 41,472 KB
最終ジャッジ日時 2024-11-27 22:51:45
合計ジャッジ時間 13,693 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
40,980 KB
testcase_01 AC 292 ms
41,052 KB
testcase_02 AC 104 ms
40,192 KB
testcase_03 AC 103 ms
39,876 KB
testcase_04 AC 120 ms
41,472 KB
testcase_05 AC 189 ms
41,300 KB
testcase_06 AC 239 ms
41,172 KB
testcase_07 AC 262 ms
40,980 KB
testcase_08 AC 214 ms
40,356 KB
testcase_09 AC 232 ms
40,416 KB
testcase_10 AC 266 ms
41,112 KB
testcase_11 AC 211 ms
40,964 KB
testcase_12 AC 227 ms
41,320 KB
testcase_13 AC 245 ms
40,868 KB
testcase_14 AC 241 ms
41,128 KB
testcase_15 AC 222 ms
41,340 KB
testcase_16 AC 225 ms
40,968 KB
testcase_17 AC 242 ms
40,476 KB
testcase_18 AC 245 ms
40,972 KB
testcase_19 AC 254 ms
40,828 KB
testcase_20 AC 254 ms
41,172 KB
testcase_21 AC 270 ms
40,136 KB
testcase_22 AC 214 ms
41,404 KB
testcase_23 AC 268 ms
41,216 KB
testcase_24 AC 291 ms
41,124 KB
testcase_25 AC 208 ms
41,396 KB
testcase_26 AC 196 ms
40,228 KB
testcase_27 AC 202 ms
41,128 KB
testcase_28 AC 268 ms
40,164 KB
testcase_29 AC 105 ms
40,112 KB
testcase_30 AC 100 ms
39,832 KB
testcase_31 AC 114 ms
41,192 KB
testcase_32 AC 112 ms
41,336 KB
testcase_33 AC 122 ms
40,964 KB
testcase_34 AC 117 ms
41,212 KB
testcase_35 AC 126 ms
41,044 KB
testcase_36 AC 110 ms
39,980 KB
testcase_37 AC 124 ms
41,388 KB
testcase_38 AC 142 ms
41,016 KB
testcase_39 AC 155 ms
41,096 KB
testcase_40 AC 209 ms
41,316 KB
testcase_41 AC 166 ms
41,100 KB
testcase_42 AC 133 ms
41,000 KB
testcase_43 AC 139 ms
41,216 KB
testcase_44 AC 287 ms
41,028 KB
testcase_45 AC 125 ms
40,384 KB
testcase_46 AC 152 ms
40,288 KB
testcase_47 AC 268 ms
40,176 KB
testcase_48 AC 225 ms
41,040 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Yuki129 {


    public Yuki129() {
        Scanner scanner = new Scanner(System.in);
        long N = scanner.nextLong();
        int M = scanner.nextInt();
        int MOD = 1000000000;

        long A = (N / 1000) / M;
        int K = (int) (N / 1000 - A * M);

        int[] dp = new int[M + 1];
        dp[0] = 1;
        dp[1] = 1;

        for (int i = 2; i <= M; i++) {
            for (int j = i; j >= 1; j--) {
                dp[j] = (dp[j] + dp[j - 1]) % MOD;
            }
        }
        System.out.println(dp[K]);

    }

    public static void main(String[] args) {
        Yuki129 hoge = new Yuki129();
    }
}

0