結果

問題 No.1011 Infinite Stairs
ユーザー nagitaosunagitaosu
提出日時 2020-03-20 21:53:06
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 584 bytes
コンパイル時間 739 ms
コンパイル使用メモリ 69,240 KB
実行使用メモリ 40,320 KB
最終ジャッジ日時 2024-12-15 05:30:14
合計ジャッジ時間 20,675 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
13,640 KB
testcase_01 AC 2 ms
36,388 KB
testcase_02 AC 9 ms
13,640 KB
testcase_03 TLE -
testcase_04 AC 1,275 ms
15,488 KB
testcase_05 TLE -
testcase_06 AC 2 ms
6,820 KB
testcase_07 AC 38 ms
6,820 KB
testcase_08 AC 2 ms
6,816 KB
testcase_09 AC 2 ms
6,820 KB
testcase_10 AC 36 ms
6,816 KB
testcase_11 AC 734 ms
16,128 KB
testcase_12 AC 13 ms
6,820 KB
testcase_13 AC 756 ms
10,880 KB
testcase_14 AC 5 ms
6,820 KB
testcase_15 AC 237 ms
11,008 KB
testcase_16 TLE -
testcase_17 AC 371 ms
8,320 KB
testcase_18 AC 1,131 ms
19,584 KB
testcase_19 AC 6 ms
6,816 KB
testcase_20 AC 17 ms
6,816 KB
testcase_21 AC 701 ms
11,264 KB
testcase_22 TLE -
testcase_23 AC 849 ms
11,520 KB
testcase_24 AC 461 ms
11,520 KB
testcase_25 AC 805 ms
18,944 KB
testcase_26 AC 291 ms
40,320 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <vector>
using namespace std;
constexpr int MOD = 1e9 + 7;

int dp[301][90001];
int main(){
    int n, d, k; cin >> n >> d >> k;
    dp[0][0] = 1;
    for(int i = 0; i < n; ++i){
        for(int j = 0; j < k; ++j){
            if(dp[i][j] == 0){ continue; }
            for(int step=1; step < d + 1; ++step){
                if(j + step < k + 1){
                    dp[i+1][j+step] += dp[i][j];
                    dp[i+1][j+step] %= MOD;
                }
            } 
        }
    }
    cout << dp[n][k] << endl;
    return 0;
}
0