結果

問題 No.1011 Infinite Stairs
ユーザー titiatitia
提出日時 2020-03-21 03:46:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 650 ms / 2,000 ms
コード長 278 bytes
コンパイル時間 247 ms
コンパイル使用メモリ 82,396 KB
実行使用メモリ 272,544 KB
最終ジャッジ日時 2024-07-17 11:56:49
合計ジャッジ時間 4,649 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,556 KB
testcase_01 AC 36 ms
52,436 KB
testcase_02 AC 53 ms
65,796 KB
testcase_03 AC 447 ms
201,760 KB
testcase_04 AC 116 ms
93,580 KB
testcase_05 AC 650 ms
272,544 KB
testcase_06 AC 36 ms
52,312 KB
testcase_07 AC 49 ms
63,604 KB
testcase_08 AC 36 ms
52,588 KB
testcase_09 AC 41 ms
59,852 KB
testcase_10 AC 48 ms
62,792 KB
testcase_11 AC 128 ms
93,420 KB
testcase_12 AC 47 ms
62,528 KB
testcase_13 AC 101 ms
93,228 KB
testcase_14 AC 42 ms
59,896 KB
testcase_15 AC 116 ms
93,556 KB
testcase_16 AC 323 ms
160,152 KB
testcase_17 AC 69 ms
71,464 KB
testcase_18 AC 206 ms
118,912 KB
testcase_19 AC 50 ms
62,020 KB
testcase_20 AC 44 ms
59,980 KB
testcase_21 AC 110 ms
84,180 KB
testcase_22 AC 175 ms
108,532 KB
testcase_23 AC 122 ms
89,828 KB
testcase_24 AC 130 ms
91,108 KB
testcase_25 AC 184 ms
111,380 KB
testcase_26 AC 69 ms
71,128 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,d,K=map(int,input().split())
mod=10**9+7

DP=[[0]*(K+d+2) for i in range(N+1)]
DP[0][0]=1

for i in range(N):
    for j in range(K+1):
        DP[i+1][j+1]+=DP[i][j]
        DP[i+1][j+1+d]-=DP[i][j]

        DP[i+1][j+1]+=DP[i+1][j]
        DP[i+1][j+1]%=mod

print(DP[N][K])
0