結果

問題 No.129 お年玉(2)
ユーザー ぴろずぴろず
提出日時 2015-01-16 23:30:14
言語 Java21
(openjdk 21)
結果
AC  
実行時間 739 ms / 5,000 ms
コード長 699 bytes
コンパイル時間 2,878 ms
コンパイル使用メモリ 74,332 KB
実行使用メモリ 46,312 KB
最終ジャッジ日時 2024-11-27 22:56:29
合計ジャッジ時間 26,224 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 229 ms
45,816 KB
testcase_01 AC 694 ms
46,048 KB
testcase_02 AC 139 ms
41,408 KB
testcase_03 AC 135 ms
41,188 KB
testcase_04 AC 136 ms
41,464 KB
testcase_05 AC 485 ms
46,216 KB
testcase_06 AC 588 ms
46,104 KB
testcase_07 AC 652 ms
46,056 KB
testcase_08 AC 538 ms
46,032 KB
testcase_09 AC 615 ms
46,220 KB
testcase_10 AC 660 ms
45,944 KB
testcase_11 AC 533 ms
46,132 KB
testcase_12 AC 591 ms
46,124 KB
testcase_13 AC 605 ms
46,100 KB
testcase_14 AC 588 ms
45,848 KB
testcase_15 AC 549 ms
46,236 KB
testcase_16 AC 578 ms
46,184 KB
testcase_17 AC 625 ms
46,020 KB
testcase_18 AC 628 ms
46,068 KB
testcase_19 AC 643 ms
45,868 KB
testcase_20 AC 642 ms
45,984 KB
testcase_21 AC 731 ms
46,184 KB
testcase_22 AC 557 ms
45,984 KB
testcase_23 AC 684 ms
46,092 KB
testcase_24 AC 665 ms
46,312 KB
testcase_25 AC 530 ms
45,908 KB
testcase_26 AC 542 ms
46,068 KB
testcase_27 AC 536 ms
46,160 KB
testcase_28 AC 713 ms
46,096 KB
testcase_29 AC 147 ms
41,324 KB
testcase_30 AC 143 ms
41,032 KB
testcase_31 AC 138 ms
41,240 KB
testcase_32 AC 141 ms
41,152 KB
testcase_33 AC 174 ms
42,860 KB
testcase_34 AC 148 ms
42,084 KB
testcase_35 AC 173 ms
42,584 KB
testcase_36 AC 179 ms
42,872 KB
testcase_37 AC 179 ms
42,996 KB
testcase_38 AC 255 ms
45,944 KB
testcase_39 AC 282 ms
45,724 KB
testcase_40 AC 505 ms
46,092 KB
testcase_41 AC 435 ms
45,980 KB
testcase_42 AC 268 ms
45,536 KB
testcase_43 AC 260 ms
45,836 KB
testcase_44 AC 739 ms
46,108 KB
testcase_45 AC 233 ms
45,920 KB
testcase_46 AC 288 ms
45,812 KB
testcase_47 AC 736 ms
46,112 KB
testcase_48 AC 563 ms
45,932 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package no129;

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

public class Main {
	static final BigInteger MOD = new BigInteger("1000000000");
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		long n = sc.nextLong();
		long m = sc.nextInt();
		long k = (n - (n / m / 1000 * 1000) * m) / 1000;
		//m C k
		//System.out.println(m + "," + k);
		BigInteger ans = BigInteger.ONE;
		for(int i=1;i<=m;i++) {
			ans = ans.multiply(BigInteger.valueOf(i));
		}
		for(int i=1;i<=m-k;i++) {
			ans = ans.divide(BigInteger.valueOf(i));
		}
		for(int i=1;i<=k;i++) {
			ans = ans.divide(BigInteger.valueOf(i));
		}
		ans = ans.mod(MOD);
		System.out.println(ans);
	}

}
0