結果

問題 No.129 お年玉(2)
ユーザー GrenacheGrenache
提出日時 2015-12-28 23:56:20
言語 Java
(openjdk 23)
結果
AC  
実行時間 432 ms / 5,000 ms
コード長 673 bytes
コンパイル時間 8,354 ms
コンパイル使用メモリ 74,424 KB
実行使用メモリ 41,704 KB
最終ジャッジ日時 2024-11-28 00:15:26
合計ジャッジ時間 18,951 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 156 ms
41,132 KB
testcase_01 AC 431 ms
41,124 KB
testcase_02 AC 137 ms
41,072 KB
testcase_03 AC 133 ms
41,004 KB
testcase_04 AC 133 ms
41,248 KB
testcase_05 AC 261 ms
41,240 KB
testcase_06 AC 327 ms
41,404 KB
testcase_07 AC 367 ms
41,128 KB
testcase_08 AC 297 ms
41,288 KB
testcase_09 AC 351 ms
41,256 KB
testcase_10 AC 376 ms
41,352 KB
testcase_11 AC 277 ms
40,584 KB
testcase_12 AC 338 ms
41,224 KB
testcase_13 AC 339 ms
41,516 KB
testcase_14 AC 336 ms
41,272 KB
testcase_15 AC 302 ms
41,576 KB
testcase_16 AC 326 ms
41,540 KB
testcase_17 AC 363 ms
41,264 KB
testcase_18 AC 351 ms
41,316 KB
testcase_19 AC 363 ms
41,284 KB
testcase_20 AC 370 ms
41,388 KB
testcase_21 AC 420 ms
41,308 KB
testcase_22 AC 282 ms
40,236 KB
testcase_23 AC 382 ms
41,240 KB
testcase_24 AC 373 ms
41,572 KB
testcase_25 AC 287 ms
41,560 KB
testcase_26 AC 293 ms
41,524 KB
testcase_27 AC 275 ms
40,548 KB
testcase_28 AC 425 ms
41,284 KB
testcase_29 AC 132 ms
41,156 KB
testcase_30 AC 134 ms
41,188 KB
testcase_31 AC 119 ms
39,936 KB
testcase_32 AC 132 ms
41,280 KB
testcase_33 AC 145 ms
41,488 KB
testcase_34 AC 126 ms
39,992 KB
testcase_35 AC 141 ms
41,288 KB
testcase_36 AC 144 ms
41,300 KB
testcase_37 AC 141 ms
41,520 KB
testcase_38 AC 172 ms
41,616 KB
testcase_39 AC 189 ms
41,232 KB
testcase_40 AC 277 ms
41,044 KB
testcase_41 AC 225 ms
41,320 KB
testcase_42 AC 178 ms
41,628 KB
testcase_43 AC 179 ms
41,364 KB
testcase_44 AC 432 ms
41,360 KB
testcase_45 AC 167 ms
41,704 KB
testcase_46 AC 200 ms
41,648 KB
testcase_47 AC 414 ms
41,328 KB
testcase_48 AC 292 ms
40,300 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;


public class Main_yukicoder129 {

    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);

        final int MOD = 1_000_000_000;

        long n = sc.nextLong() / 1000;
        int m = sc.nextInt();

        int a = (int)(n % m);

        int[][] p = new int[2][m + 1];
        for (int i = 0; i <= m; i++) {
        	for (int j = 0; j <= i; j++) {
        		if (j == 0 || j == i) {
        			p[i % 2][j] = 1;
        		} else {
        			p[i % 2][j] = (p[(i + 1) % 2][j - 1] + p[(i + 1) % 2][j]) % MOD;
        		}
        	}
        }

        System.out.println(p[m % 2][a]);

        sc.close();
    }
}
0