結果

問題 No.129 お年玉(2)
ユーザー kenkooookenkoooo
提出日時 2015-04-20 21:01:52
言語 Java21
(openjdk 21)
結果
AC  
実行時間 283 ms / 5,000 ms
コード長 661 bytes
コンパイル時間 2,462 ms
コンパイル使用メモリ 75,652 KB
実行使用メモリ 46,700 KB
最終ジャッジ日時 2024-05-05 22:19:48
合計ジャッジ時間 12,275 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
40,900 KB
testcase_01 AC 283 ms
46,700 KB
testcase_02 AC 111 ms
41,120 KB
testcase_03 AC 110 ms
40,336 KB
testcase_04 AC 115 ms
41,460 KB
testcase_05 AC 216 ms
45,544 KB
testcase_06 AC 186 ms
45,064 KB
testcase_07 AC 227 ms
45,564 KB
testcase_08 AC 225 ms
45,444 KB
testcase_09 AC 169 ms
45,080 KB
testcase_10 AC 231 ms
45,612 KB
testcase_11 AC 199 ms
45,688 KB
testcase_12 AC 121 ms
41,680 KB
testcase_13 AC 116 ms
40,792 KB
testcase_14 AC 183 ms
45,452 KB
testcase_15 AC 185 ms
45,284 KB
testcase_16 AC 205 ms
45,452 KB
testcase_17 AC 171 ms
44,868 KB
testcase_18 AC 228 ms
45,492 KB
testcase_19 AC 238 ms
46,020 KB
testcase_20 AC 205 ms
45,480 KB
testcase_21 AC 182 ms
45,116 KB
testcase_22 AC 207 ms
45,668 KB
testcase_23 AC 235 ms
45,680 KB
testcase_24 AC 252 ms
45,964 KB
testcase_25 AC 198 ms
45,688 KB
testcase_26 AC 210 ms
45,360 KB
testcase_27 AC 220 ms
45,312 KB
testcase_28 AC 216 ms
45,412 KB
testcase_29 AC 100 ms
39,980 KB
testcase_30 AC 114 ms
41,072 KB
testcase_31 AC 110 ms
41,180 KB
testcase_32 AC 100 ms
40,128 KB
testcase_33 AC 115 ms
41,080 KB
testcase_34 AC 123 ms
41,352 KB
testcase_35 AC 112 ms
41,000 KB
testcase_36 AC 123 ms
40,956 KB
testcase_37 AC 107 ms
40,404 KB
testcase_38 AC 163 ms
43,332 KB
testcase_39 AC 154 ms
42,980 KB
testcase_40 AC 167 ms
45,168 KB
testcase_41 AC 194 ms
45,100 KB
testcase_42 AC 169 ms
45,048 KB
testcase_43 AC 125 ms
41,944 KB
testcase_44 AC 282 ms
46,664 KB
testcase_45 AC 157 ms
43,340 KB
testcase_46 AC 137 ms
41,644 KB
testcase_47 AC 248 ms
45,840 KB
testcase_48 AC 220 ms
45,504 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.math.BigInteger;
import java.util.Scanner;

public class Main {

	public static void main(String[] args) throws Exception {
		Scanner sc = new Scanner(System.in);
		long N = sc.nextLong() / 1000;
		int M = sc.nextInt();
		N %= M;

		final int MOD = 1000000000;
		BigInteger ans = new BigInteger("1");
		// M_C_N を求めれば良い
		if (N == 0) {
			System.out.println(1);
			return;
		}
		for (int i = 1; i <= N; i++) {
			ans = ans.multiply(new BigInteger(String.valueOf(M - i + 1)));
			ans = ans.divide(new BigInteger(String.valueOf(i)));
		}
		ans = ans.mod(new BigInteger(String.valueOf(MOD)));
		System.out.println(ans.toString());

	}
}
	
0