結果

問題 No.129 お年玉(2)
ユーザー ki_ki33ki_ki33
提出日時 2015-01-17 00:02:18
言語 Java21
(openjdk 21)
結果
AC  
実行時間 233 ms / 5,000 ms
コード長 1,639 bytes
コンパイル時間 3,479 ms
コンパイル使用メモリ 88,872 KB
実行使用メモリ 46,024 KB
最終ジャッジ日時 2024-11-27 23:00:29
合計ジャッジ時間 11,958 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 153 ms
42,084 KB
testcase_01 AC 123 ms
41,176 KB
testcase_02 AC 116 ms
40,592 KB
testcase_03 AC 111 ms
40,312 KB
testcase_04 AC 122 ms
41,264 KB
testcase_05 AC 168 ms
42,792 KB
testcase_06 AC 215 ms
45,788 KB
testcase_07 AC 220 ms
45,704 KB
testcase_08 AC 165 ms
42,288 KB
testcase_09 AC 205 ms
45,164 KB
testcase_10 AC 198 ms
45,096 KB
testcase_11 AC 206 ms
45,640 KB
testcase_12 AC 138 ms
41,020 KB
testcase_13 AC 143 ms
41,504 KB
testcase_14 AC 209 ms
45,448 KB
testcase_15 AC 213 ms
46,024 KB
testcase_16 AC 213 ms
45,644 KB
testcase_17 AC 194 ms
44,992 KB
testcase_18 AC 200 ms
45,308 KB
testcase_19 AC 174 ms
42,948 KB
testcase_20 AC 224 ms
45,732 KB
testcase_21 AC 206 ms
45,104 KB
testcase_22 AC 199 ms
45,436 KB
testcase_23 AC 209 ms
45,924 KB
testcase_24 AC 130 ms
41,176 KB
testcase_25 AC 212 ms
45,272 KB
testcase_26 AC 189 ms
45,168 KB
testcase_27 AC 187 ms
45,184 KB
testcase_28 AC 233 ms
45,888 KB
testcase_29 AC 114 ms
40,088 KB
testcase_30 AC 123 ms
41,156 KB
testcase_31 AC 126 ms
41,452 KB
testcase_32 AC 126 ms
41,584 KB
testcase_33 AC 120 ms
41,468 KB
testcase_34 AC 123 ms
40,416 KB
testcase_35 AC 115 ms
40,172 KB
testcase_36 AC 146 ms
41,644 KB
testcase_37 AC 134 ms
41,648 KB
testcase_38 AC 183 ms
43,196 KB
testcase_39 AC 176 ms
42,416 KB
testcase_40 AC 196 ms
45,536 KB
testcase_41 AC 192 ms
45,408 KB
testcase_42 AC 176 ms
43,128 KB
testcase_43 AC 129 ms
41,056 KB
testcase_44 AC 180 ms
43,772 KB
testcase_45 AC 165 ms
42,400 KB
testcase_46 AC 139 ms
41,764 KB
testcase_47 AC 202 ms
45,268 KB
testcase_48 AC 171 ms
42,080 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