結果

問題 No.1011 Infinite Stairs
ユーザー minus9dminus9d
提出日時 2020-03-20 21:51:04
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,442 bytes
コンパイル時間 1,178 ms
コンパイル使用メモリ 99,800 KB
実行使用メモリ 222,496 KB
最終ジャッジ日時 2024-12-15 05:27:08
合計ジャッジ時間 46,602 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
13,764 KB
testcase_01 AC 1 ms
13,764 KB
testcase_02 AC 49 ms
13,760 KB
testcase_03 TLE -
testcase_04 TLE -
testcase_05 TLE -
testcase_06 AC 2 ms
13,764 KB
testcase_07 AC 238 ms
38,560 KB
testcase_08 AC 2 ms
13,764 KB
testcase_09 AC 4 ms
27,424 KB
testcase_10 AC 225 ms
13,764 KB
testcase_11 TLE -
testcase_12 AC 76 ms
13,772 KB
testcase_13 TLE -
testcase_14 AC 20 ms
13,768 KB
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 AC 42 ms
37,664 KB
testcase_20 AC 96 ms
13,768 KB
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <algorithm>
#include <array>
#include <cassert>
#include <climits>
#include <cmath>
#include <cstdio>
#include <cstring>
#include <deque>
#include <functional>
#include <iomanip>
#include <iostream>
#include <map>
#include <numeric>
#include <queue>
#include <set>
#include <sstream>
#include <stack>
#include <string>
#include <vector>
using namespace std;
typedef long long ll;
#define REP(i,n) for(int i = 0; i < (int)(n); ++i)
#define FOR(i,a,b) for(int i = (a); i < (int)(b); ++i)
#define ALL(c) (c).begin(), (c).end()
#define SIZE(v) ((int)v.size())
template<class T> inline bool chmin(T& a, T b) {
    if (a > b) {
        a = b; return true;
    }
    return false;
}
template<class T> inline bool chmax(T& a, T b) {
    if (a < b) {
        a = b; return true;
    }
    return false;
}
#define pb push_back
#define mp make_pair
#define mt make_tuple

ll MOD = 1e9 + 7;
int main(void)
{
    cin.sync_with_stdio(false);
    ll N, D, K;
    cin >> N >> D >> K;

    // [行動回数][何段目か]
    vector<vector<ll>> dp(N + 1, vector<ll>(K + 1));
    dp[0][0] = 1;
    REP(n, N) {
        REP(k, K) {
            FOR(d, 1, D + 1) {
                if (k + d <= K) {
                    dp[n + 1][k + d] += dp[n][k];
                    dp[n + 1][k + d] %= MOD;
                }
            }
        }
    }
    // for(auto e: dp[N]) cout << e << " ";
    // cout << endl;

    cout << dp[N][K] << endl;

    return 0;
}
0