結果

問題 No.1011 Infinite Stairs
ユーザー eQeeQe
提出日時 2020-03-27 20:29:47
言語 C++11
(gcc 13.3.0)
結果
MLE  
(最新)
AC  
(最初)
実行時間 -
コード長 860 bytes
コンパイル時間 1,269 ms
コンパイル使用メモリ 158,884 KB
実行使用メモリ 516,276 KB
最終ジャッジ日時 2024-07-17 12:03:35
合計ジャッジ時間 4,416 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
7,624 KB
testcase_01 AC 3 ms
9,424 KB
testcase_02 AC 54 ms
230,632 KB
testcase_03 AC 287 ms
428,300 KB
testcase_04 AC 102 ms
312,176 KB
testcase_05 MLE -
testcase_06 AC 2 ms
7,620 KB
testcase_07 AC 34 ms
144,976 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 3 ms
9,440 KB
testcase_10 AC 16 ms
66,220 KB
testcase_11 AC 109 ms
293,112 KB
testcase_12 AC 17 ms
68,012 KB
testcase_13 AC 62 ms
158,760 KB
testcase_14 AC 18 ms
84,020 KB
testcase_15 AC 87 ms
238,716 KB
testcase_16 AC 221 ms
383,244 KB
testcase_17 AC 70 ms
262,512 KB
testcase_18 AC 141 ms
281,884 KB
testcase_19 AC 13 ms
51,500 KB
testcase_20 AC 12 ms
49,088 KB
testcase_21 AC 72 ms
159,348 KB
testcase_22 AC 133 ms
293,176 KB
testcase_23 AC 75 ms
154,392 KB
testcase_24 AC 88 ms
191,872 KB
testcase_25 AC 138 ms
294,172 KB
testcase_26 AC 38 ms
102,208 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <string>
#define ft first
#define sc second
#define pt(sth) cout << sth << "\n"
#define chmax(a, b) (a)=(a>b)?(a):(b);
#define chmin(a, b) (a)=(a<b)?(a):(b);
#define moC(a, s, b) (a)=((a)s(b)+MOD)%MOD
using namespace std;
typedef long long ll;
typedef pair<ll, ll> PL;
static const ll INF=1e18;
static const ll MAX=101010;
static const ll MOD=1e9+7;


/*
 for(i=0; i<N; i++)
   cin >> a[i];
*/

ll dp[333][333*333];
ll s[333][333*333];

int main(void) {
  ll i, j, k;
  
  ll N, D, K;
  cin >> N >> D >> K;
  
  dp[0][0]=1;
  s[0][0]=1;
  for(i=0; i<N; i++) {
    for(j=1; j<=K; j++) s[i][j]=(s[i][j-1]+dp[i][j])%MOD;
    
    for(j=1; j<=K; j++) {
      if(j-D-1>=0)
        dp[i+1][j]=(s[i][j-1]-s[i][j-D-1]+MOD)%MOD;
      else
        dp[i+1][j]=(s[i][j-1]-0          +MOD)%MOD;
    }
      
  }
  
  pt(dp[N][K]);
  
}


0