結果

問題 No.1011 Infinite Stairs
ユーザー dekomori_sanaedekomori_sanae
提出日時 2020-03-20 21:37:13
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,139 bytes
コンパイル時間 797 ms
コンパイル使用メモリ 88,808 KB
実行使用メモリ 290,560 KB
最終ジャッジ日時 2024-12-15 04:42:12
合計ジャッジ時間 26,191 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 5 ms
13,988 KB
testcase_01 AC 6 ms
237,568 KB
testcase_02 AC 160 ms
212,128 KB
testcase_03 TLE -
testcase_04 AC 1,517 ms
246,820 KB
testcase_05 TLE -
testcase_06 AC 4 ms
6,820 KB
testcase_07 AC 129 ms
129,408 KB
testcase_08 AC 4 ms
6,816 KB
testcase_09 AC 6 ms
7,808 KB
testcase_10 AC 78 ms
59,648 KB
testcase_11 AC 1,010 ms
215,680 KB
testcase_12 AC 54 ms
58,752 KB
testcase_13 AC 1,003 ms
117,632 KB
testcase_14 AC 56 ms
75,264 KB
testcase_15 AC 500 ms
174,080 KB
testcase_16 TLE -
testcase_17 AC 554 ms
226,688 KB
testcase_18 TLE -
testcase_19 AC 39 ms
45,568 KB
testcase_20 AC 49 ms
44,928 KB
testcase_21 AC 1,111 ms
108,288 KB
testcase_22 TLE -
testcase_23 AC 1,537 ms
98,048 KB
testcase_24 AC 968 ms
129,280 KB
testcase_25 AC 1,437 ms
192,896 KB
testcase_26 AC 477 ms
290,560 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <cstdio>
#include <string>
#include <algorithm>
#include <utility>
#include <cmath>
#include <vector>
#include <queue>
#include <set>
#include <map>
#include <numeric>
#include <functional>
using namespace std;
typedef long long ll;
typedef vector<ll> vl;
typedef vector<vector<ll>> vvl;
typedef pair<ll, ll> P;
#define rep(i, n) for(ll i = 0; i < n; i++)
#define exrep(i, a, b) for(ll i = a; i <= b; i++)
#define out(x) cout << x << endl
#define exout(x) printf("%.10f\n", x)
#define chmax(x, y) x = max(x, y)
#define chmin(x, y) x = min(x, y)
#define all(a) a.begin(), a.end()
#define rall(a) a.rbegin(), a.rend()
#define pb push_back
#define re0 return 0
const ll mod = 1000000007;
const ll INF = 1e16;
const ll MAX_N = 100010;
 
int main() {
    ll n, d, k;
    cin >> n >> d >> k;

    vvl dp(n+1, vl(100000));  // dp[i][j] : i回の移動後、j段目にいる場合の数
    dp[0][0] = 1;
    rep(i, n) {
        exrep(j, 0, k) {
            exrep(x, 1, d) {
                dp[i+1][j+x] += dp[i][j];
                dp[i+1][j+x] %= mod;
            }
        }
    }
    
    out(dp[n][k]);
    re0;
}
0