結果

問題 No.129 お年玉(2)
ユーザー uafr_csuafr_cs
提出日時 2015-08-06 19:54:24
言語 Java
(openjdk 23)
結果
AC  
実行時間 898 ms / 5,000 ms
コード長 738 bytes
コンパイル時間 2,477 ms
コンパイル使用メモリ 76,956 KB
実行使用メモリ 456,860 KB
最終ジャッジ日時 2024-11-28 00:08:43
合計ジャッジ時間 23,742 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 177 ms
66,448 KB
testcase_01 AC 898 ms
445,964 KB
testcase_02 AC 128 ms
41,484 KB
testcase_03 AC 149 ms
40,020 KB
testcase_04 AC 129 ms
41,052 KB
testcase_05 AC 427 ms
225,240 KB
testcase_06 AC 558 ms
353,260 KB
testcase_07 AC 661 ms
452,676 KB
testcase_08 AC 455 ms
253,644 KB
testcase_09 AC 555 ms
349,988 KB
testcase_10 AC 681 ms
453,292 KB
testcase_11 AC 436 ms
245,196 KB
testcase_12 AC 616 ms
355,004 KB
testcase_13 AC 528 ms
350,532 KB
testcase_14 AC 561 ms
352,000 KB
testcase_15 AC 523 ms
351,128 KB
testcase_16 AC 548 ms
351,496 KB
testcase_17 AC 588 ms
352,676 KB
testcase_18 AC 578 ms
351,536 KB
testcase_19 AC 603 ms
352,116 KB
testcase_20 AC 565 ms
352,352 KB
testcase_21 AC 711 ms
447,764 KB
testcase_22 AC 423 ms
255,996 KB
testcase_23 AC 689 ms
456,860 KB
testcase_24 AC 682 ms
453,532 KB
testcase_25 AC 436 ms
246,028 KB
testcase_26 AC 444 ms
251,504 KB
testcase_27 AC 417 ms
244,616 KB
testcase_28 AC 705 ms
453,640 KB
testcase_29 AC 119 ms
41,224 KB
testcase_30 AC 115 ms
41,080 KB
testcase_31 AC 119 ms
41,292 KB
testcase_32 AC 122 ms
41,208 KB
testcase_33 AC 131 ms
43,684 KB
testcase_34 AC 132 ms
41,836 KB
testcase_35 AC 140 ms
43,484 KB
testcase_36 AC 141 ms
44,096 KB
testcase_37 AC 144 ms
47,940 KB
testcase_38 AC 193 ms
83,244 KB
testcase_39 AC 204 ms
121,216 KB
testcase_40 AC 379 ms
230,868 KB
testcase_41 AC 286 ms
179,060 KB
testcase_42 AC 181 ms
101,748 KB
testcase_43 AC 190 ms
101,760 KB
testcase_44 AC 688 ms
447,796 KB
testcase_45 AC 193 ms
67,380 KB
testcase_46 AC 260 ms
122,028 KB
testcase_47 AC 771 ms
453,428 KB
testcase_48 AC 558 ms
352,928 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.HashSet;
import java.util.LinkedList;
import java.util.Scanner;
import java.util.Set;

public class Main {
	
	public static void main(String[] args){
		Scanner sc = new Scanner(System.in);
		
		final long N = sc.nextLong();
		final int M = sc.nextInt();
		
		int[][] nCk = new int[M + 1][M + 1];
		nCk[0][0] = 1;
		for(int i = 0; i < M; i++){
			for(int j = 0; j <= i; j++){
				nCk[i + 1][j] += nCk[i][j];
				nCk[i + 1][j] %= 1000000000;
				nCk[i + 1][j + 1] += nCk[i][j];
				nCk[i + 1][j + 1] %= 1000000000;
			}
		}
		
		final long one_person = N / 1000 / M * 1000;
		final long rest = N - M * one_person;
		final int k = (int)(rest / 1000);
		
		System.out.println(nCk[M][k]);
		
		
	}
	
}
0