結果

問題 No.1011 Infinite Stairs
ユーザー rinrinta121rinrinta121
提出日時 2020-03-20 22:14:09
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 683 bytes
コンパイル時間 1,105 ms
コンパイル使用メモリ 81,820 KB
実行使用メモリ 77,476 KB
最終ジャッジ日時 2024-12-15 06:17:42
合計ジャッジ時間 24,227 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
13,636 KB
testcase_01 AC 2 ms
77,476 KB
testcase_02 AC 13 ms
14,372 KB
testcase_03 TLE -
testcase_04 AC 1,357 ms
35,872 KB
testcase_05 TLE -
testcase_06 AC 2 ms
6,816 KB
testcase_07 AC 41 ms
6,820 KB
testcase_08 AC 2 ms
6,816 KB
testcase_09 AC 2 ms
6,816 KB
testcase_10 AC 39 ms
6,820 KB
testcase_11 AC 855 ms
33,152 KB
testcase_12 AC 16 ms
6,816 KB
testcase_13 AC 926 ms
21,760 KB
testcase_14 AC 6 ms
6,820 KB
testcase_15 AC 377 ms
26,880 KB
testcase_16 TLE -
testcase_17 AC 392 ms
13,184 KB
testcase_18 AC 1,993 ms
60,544 KB
testcase_19 AC 9 ms
6,820 KB
testcase_20 AC 19 ms
6,816 KB
testcase_21 AC 1,043 ms
26,880 KB
testcase_22 TLE -
testcase_23 AC 1,466 ms
31,616 KB
testcase_24 AC 871 ms
33,920 KB
testcase_25 AC 1,273 ms
52,992 KB
testcase_26 AC 426 ms
74,112 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++){
            for(int k = 1; k <= d; k++){
                dp[i+1][j+k] += dp[i][j];
                dp[i+1][j+k] %= mod;
            }
        }
    }
    cout << dp[n][m];
}
0