結果

問題 No.1011 Infinite Stairs
ユーザー zeronosu77108zeronosu77108
提出日時 2020-03-20 22:25:06
言語 C++17(clang)
(17.0.6 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 566 bytes
コンパイル時間 579 ms
コンパイル使用メモリ 121,344 KB
実行使用メモリ 221,056 KB
最終ジャッジ日時 2024-11-30 17:00:29
合計ジャッジ時間 29,328 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
10,496 KB
testcase_01 AC 2 ms
148,480 KB
testcase_02 AC 11 ms
11,264 KB
testcase_03 TLE -
testcase_04 TLE -
testcase_05 TLE -
testcase_06 AC 2 ms
10,496 KB
testcase_07 AC 193 ms
106,368 KB
testcase_08 AC 1 ms
10,496 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 103 ms
5,248 KB
testcase_11 AC 1,456 ms
31,872 KB
testcase_12 AC 27 ms
5,248 KB
testcase_13 AC 1,448 ms
20,608 KB
testcase_14 AC 13 ms
5,248 KB
testcase_15 AC 384 ms
25,856 KB
testcase_16 TLE -
testcase_17 TLE -
testcase_18 AC 1,840 ms
59,776 KB
testcase_19 AC 8 ms
5,248 KB
testcase_20 AC 84 ms
5,248 KB
testcase_21 AC 1,183 ms
26,240 KB
testcase_22 TLE -
testcase_23 AC 1,446 ms
30,976 KB
testcase_24 AC 749 ms
33,408 KB
testcase_25 AC 1,338 ms
52,480 KB
testcase_26 AC 506 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=i; j<=(i*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