結果

問題 No.129 お年玉(2)
ユーザー chocoruskchocorusk
提出日時 2020-10-03 12:32:10
言語 Java21
(openjdk 21)
結果
AC  
実行時間 447 ms / 5,000 ms
コード長 634 bytes
コンパイル時間 2,112 ms
コンパイル使用メモリ 74,824 KB
実行使用メモリ 57,000 KB
最終ジャッジ日時 2024-07-18 04:18:23
合計ジャッジ時間 16,121 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
56,172 KB
testcase_01 AC 434 ms
55,776 KB
testcase_02 AC 101 ms
52,928 KB
testcase_03 AC 112 ms
54,244 KB
testcase_04 AC 111 ms
54,492 KB
testcase_05 AC 262 ms
56,628 KB
testcase_06 AC 330 ms
56,576 KB
testcase_07 AC 385 ms
56,856 KB
testcase_08 AC 306 ms
56,736 KB
testcase_09 AC 340 ms
55,528 KB
testcase_10 AC 386 ms
56,668 KB
testcase_11 AC 283 ms
56,820 KB
testcase_12 AC 339 ms
55,892 KB
testcase_13 AC 343 ms
56,808 KB
testcase_14 AC 340 ms
56,616 KB
testcase_15 AC 291 ms
55,884 KB
testcase_16 AC 334 ms
56,560 KB
testcase_17 AC 371 ms
56,844 KB
testcase_18 AC 361 ms
56,628 KB
testcase_19 AC 358 ms
55,728 KB
testcase_20 AC 369 ms
56,624 KB
testcase_21 AC 447 ms
56,584 KB
testcase_22 AC 314 ms
56,900 KB
testcase_23 AC 405 ms
57,000 KB
testcase_24 AC 398 ms
56,684 KB
testcase_25 AC 293 ms
56,732 KB
testcase_26 AC 292 ms
56,580 KB
testcase_27 AC 297 ms
56,744 KB
testcase_28 AC 441 ms
56,604 KB
testcase_29 AC 108 ms
54,064 KB
testcase_30 AC 111 ms
54,252 KB
testcase_31 AC 101 ms
52,988 KB
testcase_32 AC 110 ms
53,788 KB
testcase_33 AC 120 ms
56,028 KB
testcase_34 AC 115 ms
53,948 KB
testcase_35 AC 114 ms
53,032 KB
testcase_36 AC 119 ms
55,772 KB
testcase_37 AC 122 ms
56,220 KB
testcase_38 AC 158 ms
56,480 KB
testcase_39 AC 179 ms
56,784 KB
testcase_40 AC 264 ms
55,664 KB
testcase_41 AC 218 ms
56,760 KB
testcase_42 AC 170 ms
56,856 KB
testcase_43 AC 165 ms
56,804 KB
testcase_44 AC 436 ms
55,900 KB
testcase_45 AC 146 ms
56,812 KB
testcase_46 AC 197 ms
56,604 KB
testcase_47 AC 430 ms
56,376 KB
testcase_48 AC 315 ms
56,596 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[1];
		c[0]=1;
		for(int i=0; i<m; i++) {
			int[] nc=new int[i+2];
			for(int j=0; j<=i; j++) {
				nc[j]+=c[j];
				if(nc[j]>=MOD) nc[j]-=MOD;
				nc[j+1]+=c[j];
				if(nc[j+1]>=MOD) nc[j+1]-=MOD;
			}
			c=nc;
		}
		out.println(c[x]);
		out.close();
		scanner.close();
	}
}
0