結果

問題 No.129 お年玉(2)
ユーザー 37zigen37zigen
提出日時 2016-05-04 11:54:09
言語 Java21
(openjdk 21)
結果
MLE  
実行時間 -
コード長 1,713 bytes
コンパイル時間 2,264 ms
コンパイル使用メモリ 84,780 KB
実行使用メモリ 735,444 KB
最終ジャッジ日時 2024-10-05 06:20:22
合計ジャッジ時間 28,813 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 170 ms
79,744 KB
testcase_01 MLE -
testcase_02 AC 116 ms
41,044 KB
testcase_03 AC 154 ms
41,556 KB
testcase_04 AC 102 ms
40,940 KB
testcase_05 AC 612 ms
453,332 KB
testcase_06 MLE -
testcase_07 MLE -
testcase_08 AC 610 ms
466,176 KB
testcase_09 MLE -
testcase_10 MLE -
testcase_11 AC 574 ms
448,876 KB
testcase_12 MLE -
testcase_13 MLE -
testcase_14 MLE -
testcase_15 AC 610 ms
483,968 KB
testcase_16 MLE -
testcase_17 MLE -
testcase_18 MLE -
testcase_19 MLE -
testcase_20 MLE -
testcase_21 MLE -
testcase_22 AC 628 ms
470,148 KB
testcase_23 MLE -
testcase_24 MLE -
testcase_25 AC 563 ms
450,688 KB
testcase_26 AC 568 ms
460,908 KB
testcase_27 AC 569 ms
447,972 KB
testcase_28 MLE -
testcase_29 AC 116 ms
41,600 KB
testcase_30 AC 128 ms
41,004 KB
testcase_31 AC 117 ms
41,028 KB
testcase_32 AC 114 ms
41,024 KB
testcase_33 AC 128 ms
46,740 KB
testcase_34 AC 123 ms
42,688 KB
testcase_35 AC 134 ms
47,964 KB
testcase_36 AC 136 ms
47,716 KB
testcase_37 AC 133 ms
48,108 KB
testcase_38 AC 229 ms
124,924 KB
testcase_39 AC 260 ms
178,256 KB
testcase_40 AC 599 ms
445,736 KB
testcase_41 AC 418 ms
352,108 KB
testcase_42 AC 207 ms
136,700 KB
testcase_43 AC 224 ms
134,728 KB
testcase_44 MLE -
testcase_45 AC 178 ms
101,672 KB
testcase_46 AC 307 ms
223,596 KB
testcase_47 MLE -
testcase_48 AC 637 ms
489,324 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;
import java.math.BigInteger;
import java.util.Arrays;
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[][] test=Pascal_triangle((int)m);
		System.out.println(test[m][(int)n]);
		
	}
	void tr(Object...o){System.out.println(Arrays.deepToString(o));}
	
	
	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;
	}
	
	//パスカルの三角形のn行目を求める。
	/**
	 *0行目       1
	 *1行目     1 1
	 *2行目    1 2 1
	 *3行目   1 3 3 1
	 *4行目  1 4 6 4 1
	 * 
	 * O(n^2)
	 * 
	 * n行目は nCn,nCn,nCn,...
	 * 
	 * 返り値は
	 * long[i行目-1][左からi番目]
	 * つまり
	 * nCk=long[n][k]
	 * 
	 */
	long[][] Pascal_triangle(int n){
		long[][] ans=new long[n+1][n+1];
		for(int i=0;i<=n;i++){
			for(int j=0;j<i+1;j++){
				if(j==0)ans[i][j]=1;
				else if(j==i)ans[i][j]=1;
				else{
					ans[i][j]=ans[i-1][j-1]+ans[i-1][j];
					ans[i][j]=ans[i][j]%mod;
				}
			}
		}
		return ans;
	}
}
0