結果

問題 No.1011 Infinite Stairs
ユーザー O2MTO2MT
提出日時 2021-06-07 18:51:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 567 ms / 2,000 ms
コード長 262 bytes
コンパイル時間 413 ms
コンパイル使用メモリ 82,160 KB
実行使用メモリ 249,856 KB
最終ジャッジ日時 2024-07-17 12:18:10
合計ジャッジ時間 4,541 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,236 KB
testcase_01 AC 36 ms
52,060 KB
testcase_02 AC 60 ms
67,264 KB
testcase_03 AC 393 ms
205,096 KB
testcase_04 AC 103 ms
76,396 KB
testcase_05 AC 567 ms
249,856 KB
testcase_06 AC 37 ms
52,316 KB
testcase_07 AC 53 ms
64,000 KB
testcase_08 AC 38 ms
51,968 KB
testcase_09 AC 42 ms
59,008 KB
testcase_10 AC 52 ms
63,744 KB
testcase_11 AC 108 ms
76,160 KB
testcase_12 AC 51 ms
63,104 KB
testcase_13 AC 87 ms
75,552 KB
testcase_14 AC 46 ms
60,544 KB
testcase_15 AC 102 ms
76,144 KB
testcase_16 AC 286 ms
162,048 KB
testcase_17 AC 69 ms
72,832 KB
testcase_18 AC 184 ms
120,192 KB
testcase_19 AC 60 ms
62,976 KB
testcase_20 AC 48 ms
60,544 KB
testcase_21 AC 104 ms
85,888 KB
testcase_22 AC 164 ms
110,592 KB
testcase_23 AC 115 ms
89,728 KB
testcase_24 AC 119 ms
92,416 KB
testcase_25 AC 167 ms
112,896 KB
testcase_26 AC 69 ms
72,576 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,D,K = map(int,input().split())
MOD = 10**9+7
dp = [0 for _ in range(K+1)]
dp[0] = 1
for i in range(N):
  S = [0 for _ in range(K+1)]
  for j in range(K):
    S[j+1] = (S[j]+dp[j])%MOD
  for j in range(K,-1,-1):
    dp[j] = (S[j]-S[max(0,j-D)])%MOD
print(dp[K])
0