結果

問題 No.129 お年玉(2)
ユーザー GrenacheGrenache
提出日時 2015-12-28 23:56:20
言語 Java21
(openjdk 21)
結果
AC  
実行時間 440 ms / 5,000 ms
コード長 673 bytes
コンパイル時間 3,456 ms
コンパイル使用メモリ 74,588 KB
実行使用メモリ 42,056 KB
最終ジャッジ日時 2024-05-05 22:54:13
合計ジャッジ時間 18,971 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 163 ms
41,476 KB
testcase_01 AC 432 ms
41,512 KB
testcase_02 AC 139 ms
42,020 KB
testcase_03 AC 140 ms
41,656 KB
testcase_04 AC 135 ms
41,276 KB
testcase_05 AC 263 ms
41,860 KB
testcase_06 AC 333 ms
41,544 KB
testcase_07 AC 376 ms
41,644 KB
testcase_08 AC 304 ms
41,924 KB
testcase_09 AC 364 ms
41,476 KB
testcase_10 AC 389 ms
41,372 KB
testcase_11 AC 300 ms
41,292 KB
testcase_12 AC 342 ms
41,492 KB
testcase_13 AC 356 ms
41,652 KB
testcase_14 AC 340 ms
41,124 KB
testcase_15 AC 307 ms
41,492 KB
testcase_16 AC 331 ms
42,056 KB
testcase_17 AC 368 ms
41,216 KB
testcase_18 AC 370 ms
41,668 KB
testcase_19 AC 370 ms
41,792 KB
testcase_20 AC 367 ms
41,472 KB
testcase_21 AC 426 ms
41,640 KB
testcase_22 AC 308 ms
41,384 KB
testcase_23 AC 392 ms
41,544 KB
testcase_24 AC 380 ms
41,508 KB
testcase_25 AC 296 ms
41,592 KB
testcase_26 AC 301 ms
41,164 KB
testcase_27 AC 298 ms
41,840 KB
testcase_28 AC 430 ms
41,612 KB
testcase_29 AC 142 ms
41,400 KB
testcase_30 AC 146 ms
41,780 KB
testcase_31 AC 152 ms
41,092 KB
testcase_32 AC 148 ms
41,688 KB
testcase_33 AC 154 ms
41,372 KB
testcase_34 AC 144 ms
41,696 KB
testcase_35 AC 154 ms
41,928 KB
testcase_36 AC 158 ms
41,696 KB
testcase_37 AC 155 ms
41,492 KB
testcase_38 AC 186 ms
41,636 KB
testcase_39 AC 202 ms
41,556 KB
testcase_40 AC 290 ms
41,640 KB
testcase_41 AC 232 ms
41,852 KB
testcase_42 AC 190 ms
41,604 KB
testcase_43 AC 187 ms
41,820 KB
testcase_44 AC 440 ms
41,644 KB
testcase_45 AC 174 ms
41,548 KB
testcase_46 AC 211 ms
41,360 KB
testcase_47 AC 434 ms
41,792 KB
testcase_48 AC 313 ms
41,216 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