結果

問題 No.1011 Infinite Stairs
ユーザー tentententen
提出日時 2021-11-04 11:42:19
言語 Java21
(openjdk 21)
結果
AC  
実行時間 344 ms / 2,000 ms
コード長 1,640 bytes
コンパイル時間 2,124 ms
コンパイル使用メモリ 78,492 KB
実行使用メモリ 166,580 KB
最終ジャッジ日時 2024-10-14 09:10:23
合計ジャッジ時間 5,669 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
49,792 KB
testcase_01 AC 53 ms
50,420 KB
testcase_02 AC 77 ms
51,188 KB
testcase_03 AC 240 ms
126,200 KB
testcase_04 AC 101 ms
63,212 KB
testcase_05 AC 344 ms
166,580 KB
testcase_06 AC 48 ms
36,920 KB
testcase_07 AC 59 ms
37,976 KB
testcase_08 AC 50 ms
36,980 KB
testcase_09 AC 49 ms
36,920 KB
testcase_10 AC 59 ms
37,520 KB
testcase_11 AC 101 ms
53,852 KB
testcase_12 AC 64 ms
37,668 KB
testcase_13 AC 89 ms
50,032 KB
testcase_14 AC 52 ms
37,012 KB
testcase_15 AC 97 ms
53,972 KB
testcase_16 AC 187 ms
96,172 KB
testcase_17 AC 78 ms
45,516 KB
testcase_18 AC 142 ms
73,124 KB
testcase_19 AC 58 ms
37,208 KB
testcase_20 AC 52 ms
37,140 KB
testcase_21 AC 102 ms
53,960 KB
testcase_22 AC 133 ms
64,816 KB
testcase_23 AC 101 ms
53,712 KB
testcase_24 AC 104 ms
53,720 KB
testcase_25 AC 126 ms
64,620 KB
testcase_26 AC 86 ms
45,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

public class Main {
    static final int MOD = 1000000007;
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        int d = sc.nextInt();
        int k = sc.nextInt();
        int[][] dp = new int[n + 1][k + 1];
        Arrays.fill(dp[0], 1);
        for (int i = 1; i <= n; i++) {
            for (int j = i; j <= k; j++) {
                dp[i][j] = dp[i][j - 1];
                if (j > d) {
                    dp[i][j] += (dp[i - 1][j - 1] - dp[i - 1][j - d - 1] + MOD) % MOD;
                    dp[i][j] %= MOD;
                } else {
                    dp[i][j] += dp[i - 1][j - 1];
                    dp[i][j] %= MOD;
                }
            }
        }
        System.out.println((dp[n][k] - dp[n][k - 1] + MOD) % MOD);
    }
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public double nextDouble() throws Exception {
        return Double.parseDouble(next());
    }
    
    public String nextLine() throws Exception {
        return br.readLine();
    }
    
    public String next() throws Exception {
        if (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
}
0