結果

問題 No.129 お年玉(2)
ユーザー kenkooookenkoooo
提出日時 2015-04-20 21:01:52
言語 Java
(openjdk 23)
結果
AC  
実行時間 265 ms / 5,000 ms
コード長 661 bytes
コンパイル時間 4,226 ms
コンパイル使用メモリ 75,480 KB
実行使用メモリ 47,160 KB
最終ジャッジ日時 2024-11-27 23:42:30
合計ジャッジ時間 12,106 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
41,104 KB
testcase_01 AC 265 ms
47,160 KB
testcase_02 AC 115 ms
40,428 KB
testcase_03 AC 115 ms
40,920 KB
testcase_04 AC 112 ms
41,272 KB
testcase_05 AC 208 ms
45,312 KB
testcase_06 AC 188 ms
45,412 KB
testcase_07 AC 225 ms
45,628 KB
testcase_08 AC 222 ms
46,076 KB
testcase_09 AC 183 ms
45,088 KB
testcase_10 AC 228 ms
45,500 KB
testcase_11 AC 192 ms
45,516 KB
testcase_12 AC 122 ms
41,108 KB
testcase_13 AC 120 ms
41,416 KB
testcase_14 AC 177 ms
45,380 KB
testcase_15 AC 180 ms
45,536 KB
testcase_16 AC 189 ms
45,632 KB
testcase_17 AC 172 ms
45,280 KB
testcase_18 AC 216 ms
45,692 KB
testcase_19 AC 237 ms
46,224 KB
testcase_20 AC 208 ms
45,668 KB
testcase_21 AC 179 ms
44,872 KB
testcase_22 AC 206 ms
45,984 KB
testcase_23 AC 225 ms
45,756 KB
testcase_24 AC 247 ms
45,732 KB
testcase_25 AC 195 ms
45,708 KB
testcase_26 AC 215 ms
45,644 KB
testcase_27 AC 221 ms
45,912 KB
testcase_28 AC 211 ms
45,460 KB
testcase_29 AC 110 ms
41,316 KB
testcase_30 AC 106 ms
40,304 KB
testcase_31 AC 95 ms
39,896 KB
testcase_32 AC 111 ms
41,228 KB
testcase_33 AC 111 ms
40,204 KB
testcase_34 AC 116 ms
40,088 KB
testcase_35 AC 109 ms
41,276 KB
testcase_36 AC 129 ms
41,696 KB
testcase_37 AC 115 ms
40,140 KB
testcase_38 AC 154 ms
43,536 KB
testcase_39 AC 150 ms
42,992 KB
testcase_40 AC 171 ms
44,832 KB
testcase_41 AC 177 ms
45,056 KB
testcase_42 AC 169 ms
45,092 KB
testcase_43 AC 117 ms
40,792 KB
testcase_44 AC 260 ms
46,572 KB
testcase_45 AC 157 ms
43,300 KB
testcase_46 AC 123 ms
41,564 KB
testcase_47 AC 242 ms
45,856 KB
testcase_48 AC 222 ms
45,408 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