結果

問題 No.1011 Infinite Stairs
ユーザー zeronosu77108zeronosu77108
提出日時 2020-03-20 21:49:31
言語 C++17(clang)
(17.0.6 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 560 bytes
コンパイル時間 701 ms
コンパイル使用メモリ 121,088 KB
実行使用メモリ 221,184 KB
最終ジャッジ日時 2024-11-30 16:59:04
合計ジャッジ時間 29,747 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
10,496 KB
testcase_01 AC 2 ms
148,352 KB
testcase_02 AC 13 ms
11,520 KB
testcase_03 TLE -
testcase_04 TLE -
testcase_05 TLE -
testcase_06 AC 2 ms
10,496 KB
testcase_07 AC 59 ms
5,248 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 55 ms
5,248 KB
testcase_11 AC 1,308 ms
31,872 KB
testcase_12 AC 20 ms
5,248 KB
testcase_13 AC 1,376 ms
20,736 KB
testcase_14 AC 5 ms
5,248 KB
testcase_15 AC 519 ms
25,984 KB
testcase_16 TLE -
testcase_17 AC 610 ms
11,392 KB
testcase_18 TLE -
testcase_19 AC 11 ms
5,248 KB
testcase_20 AC 25 ms
5,248 KB
testcase_21 AC 1,496 ms
26,240 KB
testcase_22 TLE -
testcase_23 TLE -
testcase_24 AC 1,170 ms
33,408 KB
testcase_25 AC 1,782 ms
52,480 KB
testcase_26 AC 607 ms
62,592 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+1, 0));
    dp[0][0] = 1;
    for (int i=0; i<n; i++) {
        for (int j=0; j<=k; j++) {
            for (int l=1; l<=d; l++) {
                if (j + l > k) continue;
                if (dp[i+1][j+l] >= MOD) dp[i+1][j+l] %= MOD;
                dp[i+1][j+l] += dp[i][j];
            }
        }
    }

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