結果

問題 No.1011 Infinite Stairs
ユーザー あめふりてる*あめふりてる*
提出日時 2020-06-02 15:46:28
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
TLE  
実行時間 -
コード長 623 bytes
コンパイル時間 1,732 ms
コンパイル使用メモリ 171,024 KB
実行使用メモリ 222,464 KB
最終ジャッジ日時 2024-11-24 00:59:35
合計ジャッジ時間 43,342 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
10,496 KB
testcase_01 AC 2 ms
148,480 KB
testcase_02 AC 20 ms
11,392 KB
testcase_03 TLE -
testcase_04 TLE -
testcase_05 TLE -
testcase_06 AC 2 ms
10,496 KB
testcase_07 AC 131 ms
26,240 KB
testcase_08 AC 2 ms
10,496 KB
testcase_09 AC 3 ms
107,392 KB
testcase_10 AC 125 ms
10,624 KB
testcase_11 TLE -
testcase_12 AC 42 ms
10,496 KB
testcase_13 TLE -
testcase_14 AC 12 ms
10,496 KB
testcase_15 AC 1,183 ms
76,160 KB
testcase_16 TLE -
testcase_17 AC 1,360 ms
43,008 KB
testcase_18 TLE -
testcase_19 AC 23 ms
5,248 KB
testcase_20 AC 60 ms
5,248 KB
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 AC 1,463 ms
65,792 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main()
{
    int n,d,k;
    cin >> n >> d >> k;

    vector<vector<long long>> dp(n + 1, vector<long long>(k + d + 10,0));

    dp[0][0] = 1;//配るDP
    for (int i = 1; i < n + 1; i++)
    {
        for (int j = 0; j <= k; j++)
        {
            for (int l = 1; l <= d; l++)
            {
                dp[i][j + l] += dp[i - 1][j];
                dp[i][j + 1] %= 1000000007;
            }
        }
    }
    
    //for (int i = 0; i < n + 1; i++){for (int j = 0; j < k + d + 10; j++){cout << dp[i][j] << " ";}cout << endl;}
    
    cout << dp[n][k] << endl;
}
0