結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 149 ms
56,788 KB
testcase_01 AC 239 ms
56,992 KB
testcase_02 AC 119 ms
54,208 KB
testcase_03 AC 104 ms
52,936 KB
testcase_04 AC 107 ms
52,928 KB
testcase_05 AC 238 ms
57,104 KB
testcase_06 AC 248 ms
57,168 KB
testcase_07 AC 256 ms
57,036 KB
testcase_08 AC 229 ms
56,908 KB
testcase_09 AC 247 ms
57,412 KB
testcase_10 AC 261 ms
57,436 KB
testcase_11 AC 226 ms
57,140 KB
testcase_12 AC 242 ms
56,872 KB
testcase_13 AC 224 ms
57,264 KB
testcase_14 AC 229 ms
57,060 KB
testcase_15 AC 227 ms
57,368 KB
testcase_16 AC 238 ms
57,088 KB
testcase_17 AC 253 ms
57,200 KB
testcase_18 AC 251 ms
57,184 KB
testcase_19 AC 275 ms
57,488 KB
testcase_20 AC 254 ms
57,304 KB
testcase_21 AC 280 ms
57,472 KB
testcase_22 AC 231 ms
57,124 KB
testcase_23 AC 253 ms
56,928 KB
testcase_24 AC 257 ms
57,108 KB
testcase_25 AC 226 ms
56,776 KB
testcase_26 AC 240 ms
57,100 KB
testcase_27 AC 242 ms
57,256 KB
testcase_28 AC 275 ms
57,312 KB
testcase_29 AC 116 ms
54,008 KB
testcase_30 AC 111 ms
53,964 KB
testcase_31 AC 106 ms
52,828 KB
testcase_32 AC 113 ms
54,424 KB
testcase_33 AC 120 ms
55,840 KB
testcase_34 AC 115 ms
54,652 KB
testcase_35 AC 122 ms
54,136 KB
testcase_36 AC 131 ms
53,984 KB
testcase_37 AC 118 ms
55,508 KB
testcase_38 AC 175 ms
56,880 KB
testcase_39 AC 189 ms
56,644 KB
testcase_40 AC 233 ms
56,732 KB
testcase_41 AC 200 ms
57,088 KB
testcase_42 AC 167 ms
56,860 KB
testcase_43 AC 173 ms
56,912 KB
testcase_44 AC 287 ms
57,424 KB
testcase_45 AC 181 ms
56,888 KB
testcase_46 AC 196 ms
56,788 KB
testcase_47 AC 268 ms
57,612 KB
testcase_48 AC 232 ms
57,080 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