結果

問題 No.129 お年玉(2)
ユーザー ki_ki33ki_ki33
提出日時 2015-01-17 00:02:18
言語 Java21
(openjdk 21)
結果
AC  
実行時間 213 ms / 5,000 ms
コード長 1,639 bytes
コンパイル時間 2,141 ms
コンパイル使用メモリ 86,268 KB
実行使用メモリ 45,684 KB
最終ジャッジ日時 2024-05-05 21:38:16
合計ジャッジ時間 11,046 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
41,424 KB
testcase_01 AC 104 ms
40,116 KB
testcase_02 AC 103 ms
40,128 KB
testcase_03 AC 102 ms
39,876 KB
testcase_04 AC 115 ms
41,060 KB
testcase_05 AC 161 ms
42,608 KB
testcase_06 AC 197 ms
45,480 KB
testcase_07 AC 194 ms
45,516 KB
testcase_08 AC 151 ms
42,000 KB
testcase_09 AC 186 ms
44,944 KB
testcase_10 AC 179 ms
45,008 KB
testcase_11 AC 180 ms
45,476 KB
testcase_12 AC 129 ms
41,404 KB
testcase_13 AC 120 ms
40,556 KB
testcase_14 AC 197 ms
45,508 KB
testcase_15 AC 199 ms
45,640 KB
testcase_16 AC 194 ms
45,420 KB
testcase_17 AC 190 ms
45,232 KB
testcase_18 AC 190 ms
45,328 KB
testcase_19 AC 164 ms
43,284 KB
testcase_20 AC 213 ms
45,684 KB
testcase_21 AC 192 ms
45,504 KB
testcase_22 AC 186 ms
45,124 KB
testcase_23 AC 179 ms
45,564 KB
testcase_24 AC 143 ms
41,732 KB
testcase_25 AC 190 ms
45,220 KB
testcase_26 AC 174 ms
44,780 KB
testcase_27 AC 163 ms
45,100 KB
testcase_28 AC 205 ms
45,680 KB
testcase_29 AC 113 ms
40,568 KB
testcase_30 AC 106 ms
40,136 KB
testcase_31 AC 112 ms
41,200 KB
testcase_32 AC 111 ms
41,048 KB
testcase_33 AC 104 ms
40,424 KB
testcase_34 AC 116 ms
41,192 KB
testcase_35 AC 103 ms
40,436 KB
testcase_36 AC 127 ms
41,400 KB
testcase_37 AC 116 ms
41,320 KB
testcase_38 AC 165 ms
42,792 KB
testcase_39 AC 152 ms
42,872 KB
testcase_40 AC 165 ms
45,348 KB
testcase_41 AC 174 ms
45,268 KB
testcase_42 AC 153 ms
43,216 KB
testcase_43 AC 122 ms
40,812 KB
testcase_44 AC 170 ms
44,008 KB
testcase_45 AC 157 ms
42,564 KB
testcase_46 AC 121 ms
41,048 KB
testcase_47 AC 182 ms
44,988 KB
testcase_48 AC 159 ms
42,428 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedInputStream;
import java.io.IOException;
import java.math.BigDecimal;
import java.math.BigInteger;
import java.util.*;
import java.util.Map.Entry;

public class Main {
	public static final int C =  1000000007;
	static final int CY = 1000000000;
	//static boolean MAP[][];
	static long N;
	static long M;
	static int MAX = -1;
	//static int tic[][];
	static int MAP[][];
	//static int max;
	static int DP[][][];
	static int ST[][];
	//static int p[];
	//static ArrayList<HashSet<Integer>> al;
	static TreeMap<Integer, ArrayList<Integer>> hm;
	//static ArrayList<Integer> al;
	//static int a[][];
	//static char[][] ch;
	//static ArrayList<HashMap<Long, Long>> al;
	//static String a[];
	//static String str;

	public static void main(String[] args) {
		StringBuilder sb = new StringBuilder();
		BufferedInputStream bs = new BufferedInputStream(System.in);
		Scanner sc = new Scanner(bs);
		
		N = sc.nextLong()/1000;
		M =sc.nextInt();
		

		
		BigInteger bi = new BigInteger("0");
		
		long ans = 0;
		
		long let = N%M;
		
		//for (int i=1; i <= let; i++) {
			bi = bi.add(calcCombination(M, let));
		//}
		if (bi.equals(new BigInteger("0"))) {
			bi = new BigInteger("1");
		}
		System.out.println(bi.mod(new BigInteger(CY+"")));


	}
	

	/**
	 * aCbを計算して返す
	 */
	static BigInteger calcCombination(long a, long b) {
		BigInteger rtn = new BigInteger("1");
		long k = Math.min(b, a-b);
		
		
		if (k < 0) {
			return new BigInteger("0");
		}
		for (long i=1; i <= k;i++) {
			
			rtn = rtn.multiply(new BigInteger((a-(i-1))+""));
	
			rtn = rtn.divide(new BigInteger(i + ""));
		}
		return rtn;
	}

}
0