結果

問題 No.1011 Infinite Stairs
ユーザー zuminzumin
提出日時 2021-03-28 17:20:08
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 222 ms / 2,000 ms
コード長 461 bytes
コンパイル時間 701 ms
コンパイル使用メモリ 74,860 KB
実行使用メモリ 109,568 KB
最終ジャッジ日時 2024-07-17 12:17:03
合計ジャッジ時間 3,037 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 7 ms
6,944 KB
testcase_03 AC 150 ms
73,216 KB
testcase_04 AC 220 ms
109,568 KB
testcase_05 AC 222 ms
109,568 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 24 ms
15,360 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 8 ms
6,944 KB
testcase_11 AC 93 ms
47,616 KB
testcase_12 AC 5 ms
6,940 KB
testcase_13 AC 49 ms
26,624 KB
testcase_14 AC 5 ms
6,940 KB
testcase_15 AC 29 ms
17,920 KB
testcase_16 AC 154 ms
77,440 KB
testcase_17 AC 165 ms
81,920 KB
testcase_18 AC 68 ms
34,816 KB
testcase_19 AC 2 ms
6,940 KB
testcase_20 AC 7 ms
6,944 KB
testcase_21 AC 32 ms
19,840 KB
testcase_22 AC 137 ms
69,504 KB
testcase_23 AC 36 ms
19,072 KB
testcase_24 AC 30 ms
18,432 KB
testcase_25 AC 59 ms
34,048 KB
testcase_26 AC 16 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <atcoder/modint>

using namespace std;
using namespace atcoder;

using mint=modint1000000007;

int main(){
    int n,d,k;
    cin>>n>>d>>k;
    vector<vector<mint>> dp(n+1,vector<mint>(d*n+1));
    dp[0][0]=1;

    for(int i=0;i<n;i++){
        for(int st=1;st<=d*n;st++){
            dp[i+1][st]=dp[i+1][st-1]+dp[i][st-1]-(st-d>=1?dp[i][st-1-d]:0);
        }
    }
    cout<<dp[n][k].val()<<endl;

    return 0;
}
0