結果

問題 No.129 お年玉(2)
ユーザー chocoruskchocorusk
提出日時 2020-10-03 12:35:36
言語 Java21
(openjdk 21)
結果
AC  
実行時間 342 ms / 5,000 ms
コード長 548 bytes
コンパイル時間 2,212 ms
コンパイル使用メモリ 74,764 KB
実行使用メモリ 54,388 KB
最終ジャッジ日時 2024-07-18 04:18:38
合計ジャッジ時間 13,441 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 137 ms
53,980 KB
testcase_01 AC 334 ms
53,188 KB
testcase_02 AC 116 ms
54,080 KB
testcase_03 AC 102 ms
52,952 KB
testcase_04 AC 106 ms
53,380 KB
testcase_05 AC 207 ms
54,180 KB
testcase_06 AC 254 ms
53,100 KB
testcase_07 AC 283 ms
53,104 KB
testcase_08 AC 243 ms
53,824 KB
testcase_09 AC 279 ms
54,388 KB
testcase_10 AC 285 ms
53,120 KB
testcase_11 AC 230 ms
54,132 KB
testcase_12 AC 265 ms
54,124 KB
testcase_13 AC 274 ms
54,332 KB
testcase_14 AC 269 ms
54,260 KB
testcase_15 AC 233 ms
52,892 KB
testcase_16 AC 257 ms
54,072 KB
testcase_17 AC 288 ms
53,212 KB
testcase_18 AC 259 ms
52,712 KB
testcase_19 AC 291 ms
54,196 KB
testcase_20 AC 287 ms
54,168 KB
testcase_21 AC 325 ms
54,008 KB
testcase_22 AC 223 ms
53,160 KB
testcase_23 AC 297 ms
53,116 KB
testcase_24 AC 281 ms
52,772 KB
testcase_25 AC 235 ms
54,228 KB
testcase_26 AC 236 ms
54,060 KB
testcase_27 AC 229 ms
54,204 KB
testcase_28 AC 342 ms
54,028 KB
testcase_29 AC 102 ms
52,860 KB
testcase_30 AC 116 ms
54,092 KB
testcase_31 AC 115 ms
54,052 KB
testcase_32 AC 123 ms
54,296 KB
testcase_33 AC 127 ms
54,340 KB
testcase_34 AC 118 ms
54,012 KB
testcase_35 AC 106 ms
53,092 KB
testcase_36 AC 108 ms
53,068 KB
testcase_37 AC 122 ms
54,128 KB
testcase_38 AC 148 ms
54,132 KB
testcase_39 AC 159 ms
54,328 KB
testcase_40 AC 234 ms
54,144 KB
testcase_41 AC 174 ms
54,104 KB
testcase_42 AC 144 ms
54,000 KB
testcase_43 AC 148 ms
53,960 KB
testcase_44 AC 331 ms
54,056 KB
testcase_45 AC 130 ms
53,996 KB
testcase_46 AC 159 ms
53,972 KB
testcase_47 AC 318 ms
53,116 KB
testcase_48 AC 254 ms
53,792 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.PrintWriter;
import java.util.Scanner;

public class Main{
	public static void main(String[] args) {
		Scanner scanner=new Scanner(System.in);
		PrintWriter out=new PrintWriter(System.out);
		long n=Long.parseLong(scanner.next());
		int m=Integer.parseInt(scanner.next());
		int x=(int)(n/1000%m);
		final int MOD=1000000000;
		int[] c=new int[m+1];
		c[0]=1;
		for(int i=0; i<m; i++) {
			for(int j=i+1; j>=1; j--) {
				c[j]+=c[j-1];
				if(c[j]>=MOD) c[j]-=MOD;
			}
		}
		out.println(c[x]);
		out.close();
		scanner.close();
	}
}
0