結果

問題 No.1011 Infinite Stairs
ユーザー rinrinta121rinrinta121
提出日時 2020-03-21 13:30:39
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 346 ms / 2,000 ms
コード長 825 bytes
コンパイル時間 789 ms
コンパイル使用メモリ 82,224 KB
実行使用メモリ 215,936 KB
最終ジャッジ日時 2024-07-17 11:58:57
合計ジャッジ時間 3,035 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 9 ms
7,424 KB
testcase_03 AC 230 ms
143,616 KB
testcase_04 AC 42 ms
28,800 KB
testcase_05 AC 346 ms
215,936 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 6 ms
6,944 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 4 ms
6,944 KB
testcase_11 AC 48 ms
33,152 KB
testcase_12 AC 4 ms
6,940 KB
testcase_13 AC 31 ms
21,632 KB
testcase_14 AC 3 ms
6,940 KB
testcase_15 AC 39 ms
27,008 KB
testcase_16 AC 159 ms
102,400 KB
testcase_17 AC 19 ms
13,312 KB
testcase_18 AC 95 ms
60,288 KB
testcase_19 AC 4 ms
6,940 KB
testcase_20 AC 3 ms
6,944 KB
testcase_21 AC 39 ms
27,008 KB
testcase_22 AC 78 ms
50,560 KB
testcase_23 AC 47 ms
31,360 KB
testcase_24 AC 50 ms
33,792 KB
testcase_25 AC 82 ms
53,120 KB
testcase_26 AC 19 ms
13,696 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <string>
#include <vector>
#include <algorithm>
#include <cmath>
#include <stdio.h>
#include <queue>
#include <stack>
#include <climits>
#include <map>
#include <set>

using namespace std;

typedef long long ll;
typedef pair<int, int> P;

const ll mod = 1000000007;
const int inf = 1e9;
const long long INF = 1LL << 60;

ll dp[310][90400];

int main()
{
    int n,d,m;
    cin >> n >> d >> m;
    dp[0][0] = 1;
    for(int i = 0; i < n; i++){
        for(int j = 0; j <= m; j++){
            dp[i+1][j+1] += dp[i][j];
            dp[i+1][j+1] %= mod;
            dp[i+1][j+1+d] -= dp[i][j];
            dp[i+1][j+1+d] %= mod;
        }
        for(int j = 0; j <= m; j++){
            dp[i+1][j+1] += dp[i+1][j];
            dp[i][j] %= mod;

        }
    }
    cout << dp[n][m] % mod << endl;
}
0