結果

問題 No.1011 Infinite Stairs
ユーザー zeronosu77108zeronosu77108
提出日時 2020-03-20 21:46:19
言語 C++17(clang)
(17.0.6 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 503 bytes
コンパイル時間 628 ms
コンパイル使用メモリ 123,520 KB
実行使用メモリ 116,384 KB
最終ジャッジ日時 2024-11-30 16:58:26
合計ジャッジ時間 28,269 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
13,636 KB
testcase_01 AC 2 ms
80,036 KB
testcase_02 AC 11 ms
13,636 KB
testcase_03 TLE -
testcase_04 AC 1,756 ms
21,796 KB
testcase_05 TLE -
testcase_06 AC 2 ms
13,632 KB
testcase_07 AC 53 ms
6,820 KB
testcase_08 AC 2 ms
6,816 KB
testcase_09 AC 3 ms
6,816 KB
testcase_10 AC 51 ms
6,820 KB
testcase_11 AC 1,114 ms
17,536 KB
testcase_12 AC 18 ms
6,820 KB
testcase_13 AC 1,216 ms
12,032 KB
testcase_14 AC 6 ms
6,816 KB
testcase_15 AC 482 ms
14,464 KB
testcase_16 TLE -
testcase_17 AC 507 ms
7,296 KB
testcase_18 TLE -
testcase_19 AC 11 ms
6,816 KB
testcase_20 AC 22 ms
6,820 KB
testcase_21 AC 1,399 ms
14,592 KB
testcase_22 TLE -
testcase_23 AC 1,936 ms
17,024 KB
testcase_24 AC 1,165 ms
18,176 KB
testcase_25 AC 1,711 ms
27,520 KB
testcase_26 AC 569 ms
34,432 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>

using namespace std;

const int MOD = 1000000007;
int main() {
    int n,d,k;
    cin >> n >> d >> k;
    vector<vector<int>> dp(n+1, vector<int>(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;
                dp[i+1][j+l] += dp[i][j];
                dp[i+1][j+l] %= MOD;
            }
        }
    }
    
    cout << dp[n][k] << endl;
}
0