結果

問題 No.1011 Infinite Stairs
ユーザー zeronosu77108zeronosu77108
提出日時 2020-03-21 00:26:44
言語 C++17(clang)
(17.0.6 + boost 1.87.0)
結果
AC  
実行時間 311 ms / 2,000 ms
コード長 597 bytes
コンパイル時間 883 ms
コンパイル使用メモリ 123,648 KB
実行使用メモリ 216,960 KB
最終ジャッジ日時 2024-07-17 11:56:16
合計ジャッジ時間 2,873 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 7 ms
6,940 KB
testcase_03 AC 208 ms
143,104 KB
testcase_04 AC 64 ms
27,520 KB
testcase_05 AC 311 ms
216,960 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 8 ms
6,940 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 1 ms
6,944 KB
testcase_10 AC 4 ms
6,944 KB
testcase_11 AC 52 ms
32,000 KB
testcase_12 AC 3 ms
6,944 KB
testcase_13 AC 31 ms
20,864 KB
testcase_14 AC 3 ms
6,940 KB
testcase_15 AC 36 ms
25,856 KB
testcase_16 AC 152 ms
102,144 KB
testcase_17 AC 36 ms
11,904 KB
testcase_18 AC 87 ms
59,648 KB
testcase_19 AC 3 ms
6,944 KB
testcase_20 AC 3 ms
6,940 KB
testcase_21 AC 38 ms
26,752 KB
testcase_22 AC 84 ms
50,304 KB
testcase_23 AC 44 ms
31,104 KB
testcase_24 AC 47 ms
33,536 KB
testcase_25 AC 78 ms
52,480 KB
testcase_26 AC 17 ms
13,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>

using namespace std;

using int64 = long long;

const int MOD = 1000000007;
int main() {
    int n, d, k;
    cin >> n >> d >> k;
    vector<vector<int64>> dp(n + 1, vector<int64>(k + d + 1, 0));
    dp[0][0] = 1;

    for (int i=0; i<n; i++) {
        for (int j=0; j<=d*n; j++) {
            if (j > k-1) continue;
            dp[i+1][j+1] += dp[i][j];
            dp[i+1][j+1+d] -= dp[i][j];
            dp[i+1][j+1] += dp[i+1][j];

            dp[i+1][j+1] %= MOD;
        }
    }
    while(dp[n][k] < 0) dp[n][k] += MOD;

    cout << dp[n][k] << endl;
}
0