結果

問題 No.129 お年玉(2)
ユーザー 37zigen37zigen
提出日時 2016-05-04 11:22:50
言語 Java
(openjdk 23)
結果
AC  
実行時間 340 ms / 5,000 ms
コード長 923 bytes
コンパイル時間 2,817 ms
コンパイル使用メモリ 77,380 KB
実行使用メモリ 46,256 KB
最終ジャッジ日時 2024-11-28 00:27:21
合計ジャッジ時間 15,871 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 174 ms
45,864 KB
testcase_01 AC 244 ms
45,536 KB
testcase_02 AC 131 ms
41,172 KB
testcase_03 AC 137 ms
41,536 KB
testcase_04 AC 139 ms
41,144 KB
testcase_05 AC 249 ms
45,936 KB
testcase_06 AC 271 ms
45,908 KB
testcase_07 AC 293 ms
45,612 KB
testcase_08 AC 278 ms
45,820 KB
testcase_09 AC 290 ms
45,832 KB
testcase_10 AC 287 ms
45,776 KB
testcase_11 AC 269 ms
45,768 KB
testcase_12 AC 286 ms
45,968 KB
testcase_13 AC 271 ms
45,756 KB
testcase_14 AC 293 ms
45,764 KB
testcase_15 AC 266 ms
45,936 KB
testcase_16 AC 273 ms
46,000 KB
testcase_17 AC 299 ms
45,904 KB
testcase_18 AC 295 ms
45,804 KB
testcase_19 AC 302 ms
46,212 KB
testcase_20 AC 290 ms
45,900 KB
testcase_21 AC 307 ms
46,256 KB
testcase_22 AC 254 ms
46,212 KB
testcase_23 AC 310 ms
45,860 KB
testcase_24 AC 312 ms
46,160 KB
testcase_25 AC 251 ms
45,836 KB
testcase_26 AC 272 ms
45,696 KB
testcase_27 AC 285 ms
45,676 KB
testcase_28 AC 293 ms
45,852 KB
testcase_29 AC 133 ms
41,452 KB
testcase_30 AC 119 ms
40,104 KB
testcase_31 AC 127 ms
40,292 KB
testcase_32 AC 133 ms
41,432 KB
testcase_33 AC 163 ms
42,820 KB
testcase_34 AC 161 ms
41,952 KB
testcase_35 AC 160 ms
42,208 KB
testcase_36 AC 146 ms
42,212 KB
testcase_37 AC 162 ms
42,828 KB
testcase_38 AC 213 ms
45,908 KB
testcase_39 AC 215 ms
46,020 KB
testcase_40 AC 273 ms
46,140 KB
testcase_41 AC 235 ms
45,548 KB
testcase_42 AC 216 ms
45,788 KB
testcase_43 AC 206 ms
45,640 KB
testcase_44 AC 340 ms
46,220 KB
testcase_45 AC 183 ms
45,672 KB
testcase_46 AC 210 ms
45,608 KB
testcase_47 AC 307 ms
45,952 KB
testcase_48 AC 278 ms
45,724 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;
import java.math.BigInteger;
import java.util.Scanner;
public class Main{
	public static void main(String[] args)throws Exception{
		new Main().solve();
	}
	final int mod=1_000_000_000;
	void solve(){
		Scanner sc=new Scanner(System.in);
		long n=sc.nextLong();
		int m=sc.nextInt();
		n=n%(m*1000);
		n=n/1000;
		
		BigInteger ans=nCk(m,(int)n);
		//n個の●をm人に配分する。
		System.out.println(ans);
	}
	
	
	long[] fact;
	long[] inv_fact;
	//1~nの数字からk個取る方法の数
	BigInteger nCk(int n,int k){
		if(n<k)return BigInteger.ZERO;
		else{
			return fact_big(n).divide( fact_big(n-k).multiply(fact_big(k))).remainder(BigInteger.valueOf(mod));
		}
	}
	long fact(int n){
		long ans=1;
		for(int i=1;i<=n;i++)ans*=i;
		return ans;
	}
	BigInteger fact_big(int n){
		BigInteger ans=BigInteger.ONE;
		for(int i=1;i<=n;i++)ans=ans.multiply(BigInteger.valueOf(i));
		return ans;
	}
}
0