結果

問題 No.129 お年玉(2)
ユーザー 37zigen37zigen
提出日時 2016-05-04 11:23:07
言語 Java21
(openjdk 21)
結果
AC  
実行時間 295 ms / 5,000 ms
コード長 923 bytes
コンパイル時間 3,223 ms
コンパイル使用メモリ 77,948 KB
実行使用メモリ 46,588 KB
最終ジャッジ日時 2024-05-05 23:03:33
合計ジャッジ時間 15,064 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 157 ms
45,688 KB
testcase_01 AC 216 ms
45,300 KB
testcase_02 AC 110 ms
40,320 KB
testcase_03 AC 103 ms
40,276 KB
testcase_04 AC 105 ms
40,260 KB
testcase_05 AC 222 ms
46,220 KB
testcase_06 AC 248 ms
46,376 KB
testcase_07 AC 270 ms
46,100 KB
testcase_08 AC 239 ms
45,572 KB
testcase_09 AC 253 ms
46,072 KB
testcase_10 AC 260 ms
46,080 KB
testcase_11 AC 230 ms
46,004 KB
testcase_12 AC 239 ms
45,784 KB
testcase_13 AC 252 ms
46,060 KB
testcase_14 AC 268 ms
46,588 KB
testcase_15 AC 228 ms
45,760 KB
testcase_16 AC 246 ms
45,776 KB
testcase_17 AC 257 ms
46,096 KB
testcase_18 AC 259 ms
46,144 KB
testcase_19 AC 269 ms
46,268 KB
testcase_20 AC 246 ms
46,060 KB
testcase_21 AC 295 ms
46,284 KB
testcase_22 AC 240 ms
46,304 KB
testcase_23 AC 269 ms
45,948 KB
testcase_24 AC 255 ms
45,964 KB
testcase_25 AC 237 ms
45,996 KB
testcase_26 AC 239 ms
46,052 KB
testcase_27 AC 229 ms
45,820 KB
testcase_28 AC 275 ms
46,044 KB
testcase_29 AC 127 ms
41,300 KB
testcase_30 AC 119 ms
41,296 KB
testcase_31 AC 116 ms
41,472 KB
testcase_32 AC 117 ms
41,216 KB
testcase_33 AC 125 ms
41,952 KB
testcase_34 AC 137 ms
41,788 KB
testcase_35 AC 139 ms
42,516 KB
testcase_36 AC 123 ms
41,932 KB
testcase_37 AC 129 ms
42,328 KB
testcase_38 AC 189 ms
45,932 KB
testcase_39 AC 195 ms
45,596 KB
testcase_40 AC 229 ms
46,076 KB
testcase_41 AC 198 ms
45,864 KB
testcase_42 AC 184 ms
45,824 KB
testcase_43 AC 185 ms
45,876 KB
testcase_44 AC 280 ms
46,272 KB
testcase_45 AC 178 ms
45,560 KB
testcase_46 AC 174 ms
46,116 KB
testcase_47 AC 276 ms
45,716 KB
testcase_48 AC 244 ms
45,996 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