結果

問題 No.129 お年玉(2)
ユーザー kenkooookenkoooo
提出日時 2015-04-20 21:56:51
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,032 ms / 5,000 ms
コード長 711 bytes
コンパイル時間 2,112 ms
コンパイル使用メモリ 77,440 KB
実行使用メモリ 456,984 KB
最終ジャッジ日時 2024-05-05 22:25:50
合計ジャッジ時間 28,533 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 191 ms
67,312 KB
testcase_01 AC 1,032 ms
445,896 KB
testcase_02 AC 133 ms
41,240 KB
testcase_03 AC 131 ms
41,540 KB
testcase_04 AC 159 ms
41,232 KB
testcase_05 AC 596 ms
225,016 KB
testcase_06 AC 705 ms
353,252 KB
testcase_07 AC 842 ms
452,636 KB
testcase_08 AC 569 ms
254,000 KB
testcase_09 AC 746 ms
351,240 KB
testcase_10 AC 857 ms
454,132 KB
testcase_11 AC 555 ms
244,772 KB
testcase_12 AC 708 ms
354,564 KB
testcase_13 AC 704 ms
351,924 KB
testcase_14 AC 693 ms
351,976 KB
testcase_15 AC 621 ms
350,220 KB
testcase_16 AC 660 ms
351,944 KB
testcase_17 AC 733 ms
352,648 KB
testcase_18 AC 712 ms
350,536 KB
testcase_19 AC 744 ms
352,268 KB
testcase_20 AC 733 ms
352,504 KB
testcase_21 AC 926 ms
447,672 KB
testcase_22 AC 571 ms
256,044 KB
testcase_23 AC 875 ms
456,984 KB
testcase_24 AC 844 ms
453,728 KB
testcase_25 AC 563 ms
246,436 KB
testcase_26 AC 559 ms
251,780 KB
testcase_27 AC 552 ms
245,128 KB
testcase_28 AC 933 ms
455,236 KB
testcase_29 AC 136 ms
41,336 KB
testcase_30 AC 136 ms
41,336 KB
testcase_31 AC 135 ms
41,052 KB
testcase_32 AC 138 ms
41,020 KB
testcase_33 AC 134 ms
41,140 KB
testcase_34 AC 148 ms
42,008 KB
testcase_35 AC 153 ms
43,624 KB
testcase_36 AC 152 ms
44,056 KB
testcase_37 AC 159 ms
47,952 KB
testcase_38 AC 243 ms
83,092 KB
testcase_39 AC 293 ms
121,516 KB
testcase_40 AC 541 ms
231,244 KB
testcase_41 AC 385 ms
178,244 KB
testcase_42 AC 259 ms
101,484 KB
testcase_43 AC 254 ms
101,892 KB
testcase_44 AC 932 ms
449,592 KB
testcase_45 AC 211 ms
67,332 KB
testcase_46 AC 312 ms
121,780 KB
testcase_47 AC 909 ms
453,804 KB
testcase_48 AC 655 ms
353,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) throws Exception {
		Scanner koko = new Scanner(System.in);
		long n = koko.nextLong();
		int m = koko.nextInt();
		long nama = n % 1000;
		long nmai = (n - nama) / 1000;
		long amari = nmai % m;
		if (amari == 0) {
			System.out.println(1);
		} else {
			int[][] judge = new int[m + 1][m + 1];
			for (int i = 0; i < m + 1; i++) {
				judge[0][i] = 1;
				judge[i][0] = 1;
			}
			for (int i = 1; i < m + 1; i++) {
				for (int j = 1; j < m + 1; j++) {
					judge[i][j] = (judge[i - 1][j] + judge[i][j - 1]) % 1000000000;
				}
			}
			long ans = judge[(int) (m - amari)][(int) amari];
			System.out.println(ans);
		}
	}
}
0