結果

問題 No.1011 Infinite Stairs
ユーザー ktr216ktr216
提出日時 2020-03-20 21:56:29
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 530 bytes
コンパイル時間 1,867 ms
コンパイル使用メモリ 170,800 KB
実行使用メモリ 221,184 KB
最終ジャッジ日時 2024-12-15 05:37:59
合計ジャッジ時間 29,298 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
12,064 KB
testcase_01 RE -
testcase_02 RE -
testcase_03 TLE -
testcase_04 RE -
testcase_05 TLE -
testcase_06 AC 2 ms
10,496 KB
testcase_07 RE -
testcase_08 AC 2 ms
6,820 KB
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 TLE -
testcase_17 RE -
testcase_18 TLE -
testcase_19 RE -
testcase_20 RE -
testcase_21 RE -
testcase_22 TLE -
testcase_23 RE -
testcase_24 AC 908 ms
33,536 KB
testcase_25 AC 1,343 ms
52,608 KB
testcase_26 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "bits/stdc++.h"
#define rep(i,n) for(int i=0;i<n;i++)
using namespace std;

typedef long long ll;

int main() {
    ll N, d, K, MOD =1e9 + 7;
    cin >> N >> d >> K;
    //dp[i][j] : i回の移動でj段目にたどり着く方法
    vector<vector<ll>> dp(N + 1, vector<ll>(K + 1, 0));
    dp[0][0] = 1;
    rep(i, N) {
        rep(j, K) {
            rep(k, d) {
                dp[i + 1][j + k + 1] += dp[i][j];
                dp[i + 1][j + k + 1] %= MOD;
            }
        }
    }
    cout << dp[N][K] << "\n";
}
0