結果

問題 No.129 お年玉(2)
ユーザー uafr_csuafr_cs
提出日時 2015-08-06 19:54:24
言語 Java21
(openjdk 21)
結果
AC  
実行時間 727 ms / 5,000 ms
コード長 738 bytes
コンパイル時間 2,069 ms
コンパイル使用メモリ 77,144 KB
実行使用メモリ 456,636 KB
最終ジャッジ日時 2024-05-05 22:50:44
合計ジャッジ時間 22,479 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 159 ms
67,276 KB
testcase_01 AC 727 ms
445,240 KB
testcase_02 AC 109 ms
41,320 KB
testcase_03 AC 117 ms
41,276 KB
testcase_04 AC 125 ms
39,896 KB
testcase_05 AC 399 ms
225,044 KB
testcase_06 AC 527 ms
353,088 KB
testcase_07 AC 642 ms
451,852 KB
testcase_08 AC 436 ms
253,540 KB
testcase_09 AC 544 ms
350,504 KB
testcase_10 AC 654 ms
453,984 KB
testcase_11 AC 420 ms
244,324 KB
testcase_12 AC 528 ms
353,312 KB
testcase_13 AC 545 ms
351,560 KB
testcase_14 AC 544 ms
351,920 KB
testcase_15 AC 502 ms
350,092 KB
testcase_16 AC 534 ms
351,256 KB
testcase_17 AC 558 ms
351,964 KB
testcase_18 AC 551 ms
351,460 KB
testcase_19 AC 567 ms
352,596 KB
testcase_20 AC 564 ms
351,444 KB
testcase_21 AC 711 ms
447,976 KB
testcase_22 AC 446 ms
255,144 KB
testcase_23 AC 683 ms
456,636 KB
testcase_24 AC 656 ms
452,832 KB
testcase_25 AC 421 ms
245,808 KB
testcase_26 AC 428 ms
251,632 KB
testcase_27 AC 421 ms
244,268 KB
testcase_28 AC 697 ms
454,168 KB
testcase_29 AC 103 ms
39,976 KB
testcase_30 AC 111 ms
41,144 KB
testcase_31 AC 101 ms
40,200 KB
testcase_32 AC 102 ms
40,212 KB
testcase_33 AC 127 ms
43,244 KB
testcase_34 AC 112 ms
40,956 KB
testcase_35 AC 135 ms
43,180 KB
testcase_36 AC 134 ms
43,584 KB
testcase_37 AC 125 ms
46,684 KB
testcase_38 AC 192 ms
82,712 KB
testcase_39 AC 225 ms
120,796 KB
testcase_40 AC 412 ms
231,008 KB
testcase_41 AC 296 ms
178,332 KB
testcase_42 AC 206 ms
101,144 KB
testcase_43 AC 205 ms
101,572 KB
testcase_44 AC 674 ms
446,468 KB
testcase_45 AC 165 ms
66,748 KB
testcase_46 AC 253 ms
121,784 KB
testcase_47 AC 703 ms
452,928 KB
testcase_48 AC 516 ms
352,544 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