結果

問題 No.1011 Infinite Stairs
ユーザー yakkiyakki
提出日時 2020-03-20 23:01:46
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 979 bytes
コンパイル時間 1,361 ms
コンパイル使用メモリ 117,900 KB
実行使用メモリ 215,936 KB
最終ジャッジ日時 2024-05-09 00:07:22
合計ジャッジ時間 5,096 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
6,816 KB
testcase_01 AC 2 ms
6,812 KB
testcase_02 AC 17 ms
10,752 KB
testcase_03 AC 272 ms
144,256 KB
testcase_04 AC 407 ms
215,936 KB
testcase_05 WA -
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 51 ms
28,800 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 WA -
testcase_11 AC 177 ms
92,544 KB
testcase_12 WA -
testcase_13 AC 93 ms
50,048 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 5 ms
6,940 KB
testcase_20 AC 13 ms
9,344 KB
testcase_21 AC 67 ms
37,504 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 33 ms
18,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<string>
#include<vector>
#include<algorithm>
#include<bitset>
#include<set>
#include<map>
#include<stack>
#include<queue>
#include<deque>
#include<list>
#include<iomanip>
#include<cmath>
#include<cstring>
#include<functional>
using namespace std;

#define repr(i, a, b) for (int i = (int)(a); i < (int)(b); i++)
#define rep(i, n) repr(i, 0, n)
#define INF 2e9
#define MOD 1000000007
//#define MOD 998244353
#define LINF (long long)4e18
#define jck 3.141592

using ll = long long;
using Pi = pair<int,int>;
using Pl = pair<ll,ll>;



ll dp[310][90010];

int main(){
    int n,d,k; cin >> n >> d >> k;
    dp[0][0] = 1;
    dp[0][1] = -1;
    rep(i,n+1)rep(j,d*n+1){
        if(j >= 1){
            dp[i][j] += dp[i][j-1];
            dp[i][j] %= MOD;
        }
        dp[i+1][j+1] += dp[i][j];
        dp[i+1][j+1] %= MOD;
        dp[i+1][j+d+1] -= dp[i][j];
        if(dp[i+1][j+d+1] < 0) dp[i+1][j+d+1] %= MOD;
    }
    cout << dp[n][k] << endl;

}
0