結果

問題 No.1011 Infinite Stairs
ユーザー ks2mks2m
提出日時 2020-03-20 21:59:26
言語 Java21
(openjdk 21)
結果
AC  
実行時間 759 ms / 2,000 ms
コード長 762 bytes
コンパイル時間 2,195 ms
コンパイル使用メモリ 77,424 KB
実行使用メモリ 340,164 KB
最終ジャッジ日時 2024-07-17 11:49:27
合計ジャッジ時間 8,130 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
49,872 KB
testcase_01 AC 51 ms
50,300 KB
testcase_02 AC 86 ms
52,940 KB
testcase_03 AC 545 ms
219,004 KB
testcase_04 AC 152 ms
75,784 KB
testcase_05 AC 759 ms
340,164 KB
testcase_06 AC 53 ms
50,168 KB
testcase_07 AC 78 ms
51,000 KB
testcase_08 AC 52 ms
50,252 KB
testcase_09 AC 52 ms
50,140 KB
testcase_10 AC 77 ms
50,764 KB
testcase_11 AC 187 ms
84,564 KB
testcase_12 AC 64 ms
50,764 KB
testcase_13 AC 135 ms
67,112 KB
testcase_14 AC 55 ms
50,176 KB
testcase_15 AC 157 ms
75,968 KB
testcase_16 AC 396 ms
180,896 KB
testcase_17 AC 122 ms
61,896 KB
testcase_18 AC 256 ms
113,508 KB
testcase_19 AC 66 ms
50,288 KB
testcase_20 AC 57 ms
49,956 KB
testcase_21 AC 154 ms
75,696 KB
testcase_22 AC 223 ms
108,696 KB
testcase_23 AC 184 ms
83,888 KB
testcase_24 AC 175 ms
82,696 KB
testcase_25 AC 218 ms
110,336 KB
testcase_26 AC 103 ms
60,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;

public class Main {
	public static void main(String[] args) throws Exception {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		String[] sa = br.readLine().split(" ");
		int n = Integer.parseInt(sa[0]);
		int d = Integer.parseInt(sa[1]);
		int k = Integer.parseInt(sa[2]) - n;
		br.close();

		int mod = 1000000007;
		long[][] dp = new long[n + 1][k + 1];
		dp[0][0] = 1;
		for (int i = 0; i < n; i++) {
			for (int j = 1; j <= k; j++) {
				dp[i][j] += dp[i][j - 1];
			}
			for (int j = 0; j <= k; j++) {
				dp[i + 1][j] += dp[i][j];
				if (j >= d) {
					dp[i + 1][j] -= dp[i][j - d];
				}
				dp[i + 1][j] %= mod;
			}
		}
		System.out.println(dp[n][k]);
	}
}
0