結果

問題 No.1011 Infinite Stairs
ユーザー htensaihtensai
提出日時 2020-05-13 13:31:56
言語 Java21
(openjdk 21)
結果
AC  
実行時間 490 ms / 2,000 ms
コード長 708 bytes
コンパイル時間 3,253 ms
コンパイル使用メモリ 76,732 KB
実行使用メモリ 180,084 KB
最終ジャッジ日時 2024-07-17 12:08:00
合計ジャッジ時間 9,610 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
54,264 KB
testcase_01 AC 130 ms
53,808 KB
testcase_02 AC 183 ms
56,552 KB
testcase_03 AC 407 ms
129,020 KB
testcase_04 AC 209 ms
66,340 KB
testcase_05 AC 490 ms
180,084 KB
testcase_06 AC 135 ms
53,976 KB
testcase_07 AC 169 ms
54,372 KB
testcase_08 AC 133 ms
54,140 KB
testcase_09 AC 131 ms
53,928 KB
testcase_10 AC 165 ms
54,304 KB
testcase_11 AC 197 ms
65,808 KB
testcase_12 AC 168 ms
54,436 KB
testcase_13 AC 182 ms
63,148 KB
testcase_14 AC 127 ms
54,352 KB
testcase_15 AC 189 ms
66,180 KB
testcase_16 AC 340 ms
112,824 KB
testcase_17 AC 157 ms
58,896 KB
testcase_18 AC 261 ms
85,072 KB
testcase_19 AC 160 ms
54,276 KB
testcase_20 AC 138 ms
53,992 KB
testcase_21 AC 182 ms
65,940 KB
testcase_22 AC 232 ms
76,780 KB
testcase_23 AC 196 ms
66,208 KB
testcase_24 AC 201 ms
66,284 KB
testcase_25 AC 226 ms
76,432 KB
testcase_26 AC 146 ms
58,028 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    static final int MOD = 1000000007;
	public static void main (String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int d = sc.nextInt();
		int k = sc.nextInt();
		int[][] dp = new int[n + 1][k + 2];
		dp[0][0] = 1;
		for (int i = 1; i <= n; i++) {
		    for (int j = 0; j < k; j++) {
		        dp[i][j + 1] += dp[i - 1][j];
		        dp[i][j + 1] %= MOD;
		        dp[i][Math.min(j + d + 1, k + 1)] += MOD - dp[i - 1][j];
		        dp[i][Math.min(j + d + 1, k + 1)] %= MOD;
		    }
		    for (int j = i; j <= k + 1; j++) {
		        dp[i][j] += dp[i][j - 1];
		        dp[i][j] %= MOD;
		    }
		}
		System.out.println(dp[n][k]);
	}
}
0