結果

問題 No.1011 Infinite Stairs
ユーザー pluto77pluto77
提出日時 2020-06-14 15:20:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 257 ms / 2,000 ms
コード長 245 bytes
コンパイル時間 264 ms
コンパイル使用メモリ 82,528 KB
実行使用メモリ 65,716 KB
最終ジャッジ日時 2024-07-17 12:10:13
合計ジャッジ時間 3,039 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,080 KB
testcase_01 AC 38 ms
52,740 KB
testcase_02 AC 52 ms
64,236 KB
testcase_03 AC 184 ms
64,992 KB
testcase_04 AC 74 ms
64,240 KB
testcase_05 AC 257 ms
65,716 KB
testcase_06 AC 37 ms
52,684 KB
testcase_07 AC 49 ms
61,396 KB
testcase_08 AC 37 ms
53,228 KB
testcase_09 AC 42 ms
60,120 KB
testcase_10 AC 48 ms
61,128 KB
testcase_11 AC 79 ms
63,848 KB
testcase_12 AC 48 ms
61,936 KB
testcase_13 AC 65 ms
62,744 KB
testcase_14 AC 44 ms
60,520 KB
testcase_15 AC 70 ms
63,700 KB
testcase_16 AC 145 ms
64,148 KB
testcase_17 AC 58 ms
63,860 KB
testcase_18 AC 104 ms
63,840 KB
testcase_19 AC 47 ms
61,508 KB
testcase_20 AC 44 ms
61,036 KB
testcase_21 AC 69 ms
62,532 KB
testcase_22 AC 95 ms
63,728 KB
testcase_23 AC 74 ms
61,680 KB
testcase_24 AC 77 ms
63,452 KB
testcase_25 AC 98 ms
63,728 KB
testcase_26 AC 57 ms
61,704 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#yuki1011
mod=10**9+7
n,d,k=map(int,input().split())
dp=[0]*(k+1)
dp[0]=1
for j in range(n):
 t=0
 for i in dp[max(0,k-d):k]:
  t+=i
  t%=mod
 for i in range(k,-1,-1):
  dp[i]=t
  t-=dp[i-1]
  if i-1-d>=0:
   t+=dp[i-1-d]
  t%=mod
print(dp[-1])
0