結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
10,496 KB
testcase_01 AC 2 ms
148,480 KB
testcase_02 AC 11 ms
11,392 KB
testcase_03 TLE -
testcase_04 TLE -
testcase_05 TLE -
testcase_06 AC 2 ms
10,496 KB
testcase_07 AC 225 ms
106,368 KB
testcase_08 AC 2 ms
10,624 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 107 ms
5,248 KB
testcase_11 AC 1,432 ms
31,616 KB
testcase_12 AC 28 ms
5,248 KB
testcase_13 AC 1,330 ms
20,608 KB
testcase_14 AC 14 ms
5,248 KB
testcase_15 AC 380 ms
25,728 KB
testcase_16 TLE -
testcase_17 TLE -
testcase_18 AC 1,791 ms
59,648 KB
testcase_19 AC 9 ms
5,248 KB
testcase_20 AC 90 ms
5,248 KB
testcase_21 AC 1,115 ms
26,112 KB
testcase_22 TLE -
testcase_23 AC 1,364 ms
30,848 KB
testcase_24 AC 753 ms
33,408 KB
testcase_25 AC 1,291 ms
52,608 KB
testcase_26 AC 468 ms
18,432 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<=(n*d)+d; 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