結果

問題 No.1011 Infinite Stairs
ユーザー Series_205Series_205
提出日時 2020-03-20 21:41:05
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
TLE  
実行時間 -
コード長 1,012 bytes
コンパイル時間 2,107 ms
コンパイル使用メモリ 202,508 KB
実行使用メモリ 115,872 KB
最終ジャッジ日時 2024-12-15 05:01:16
合計ジャッジ時間 28,437 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
13,632 KB
testcase_01 AC 2 ms
79,196 KB
testcase_02 AC 12 ms
13,636 KB
testcase_03 TLE -
testcase_04 AC 1,609 ms
22,012 KB
testcase_05 TLE -
testcase_06 AC 2 ms
13,640 KB
testcase_07 AC 46 ms
6,820 KB
testcase_08 AC 2 ms
6,816 KB
testcase_09 AC 2 ms
6,816 KB
testcase_10 AC 43 ms
6,820 KB
testcase_11 AC 1,043 ms
17,736 KB
testcase_12 AC 16 ms
6,820 KB
testcase_13 AC 1,102 ms
12,068 KB
testcase_14 AC 5 ms
6,820 KB
testcase_15 AC 461 ms
14,824 KB
testcase_16 TLE -
testcase_17 AC 461 ms
7,500 KB
testcase_18 TLE -
testcase_19 AC 11 ms
6,820 KB
testcase_20 AC 19 ms
6,820 KB
testcase_21 AC 1,276 ms
14,840 KB
testcase_22 TLE -
testcase_23 AC 1,777 ms
17,036 KB
testcase_24 AC 1,069 ms
18,124 KB
testcase_25 AC 1,560 ms
27,692 KB
testcase_26 AC 517 ms
34,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define FOR(i, a, n) for(ll i = (ll)a; i < (ll)n; i++)
#define FORR(i, n) for(ll i = (ll)n - 1LL; i >= 0LL; i--)
#define rep(i, n) FOR(i, 0, n)
#define ALL(x) (x).begin(), (x).end()
using namespace std;
using ll = long long;
template <typename T> using V = vector<T>;

constexpr int Mod = 998244353;
constexpr int mod = 1e9 + 7;
constexpr ll inf = 1LL << 60;

template <typename T> constexpr bool chmax(T &a, const T &b) {
    if(a >= b) return false;
    a = b;
    return true;
}
template <typename T> constexpr bool chmin(T &a, const T &b) {
    if(a <= b) return false;
    a = b;
    return true;
}

/*-------------------------------------------*/

int main() {
    cin.tie(0);
    ios::sync_with_stdio(0);

    int n, d, k;
    cin >> n >> d >> k;
    int dp[n + 1][k + 1] = {};
    dp[0][0] = 1;
    rep(i, n) rep(j, k) {
        for(int x = j; x++ < j + d && x <= k;) {
            (dp[i + 1][x] += dp[i][j]) %= mod;
        }
    }
    cout << dp[n][k] << endl;

    return 0;
}
0