結果

問題 No.1011 Infinite Stairs
ユーザー c-yanc-yan
提出日時 2020-03-21 00:17:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 142 ms / 2,000 ms
コード長 399 bytes
コンパイル時間 197 ms
コンパイル使用メモリ 82,068 KB
実行使用メモリ 63,716 KB
最終ジャッジ日時 2024-07-17 11:56:04
合計ジャッジ時間 2,870 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,440 KB
testcase_01 AC 37 ms
53,136 KB
testcase_02 AC 46 ms
60,848 KB
testcase_03 AC 108 ms
63,364 KB
testcase_04 AC 138 ms
63,492 KB
testcase_05 AC 142 ms
63,716 KB
testcase_06 AC 36 ms
52,892 KB
testcase_07 AC 54 ms
60,896 KB
testcase_08 AC 37 ms
52,888 KB
testcase_09 AC 38 ms
52,968 KB
testcase_10 AC 47 ms
60,788 KB
testcase_11 AC 83 ms
62,048 KB
testcase_12 AC 45 ms
58,768 KB
testcase_13 AC 64 ms
60,436 KB
testcase_14 AC 44 ms
58,920 KB
testcase_15 AC 58 ms
61,560 KB
testcase_16 AC 109 ms
62,240 KB
testcase_17 AC 114 ms
62,988 KB
testcase_18 AC 73 ms
62,336 KB
testcase_19 AC 43 ms
60,020 KB
testcase_20 AC 45 ms
60,736 KB
testcase_21 AC 57 ms
60,204 KB
testcase_22 AC 103 ms
63,528 KB
testcase_23 AC 57 ms
61,748 KB
testcase_24 AC 57 ms
60,416 KB
testcase_25 AC 72 ms
62,016 KB
testcase_26 AC 50 ms
59,744 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, d, K = map(int, input().split())

buf0 = [0] * (d * N + K + 1)
buf1 = [0] * (d * N + K + 1)
buf0[0] = 1

for i in range(N):
    t = 0
    for j in range(d):
        t += buf0[j]
        t %= 1000000007
        buf1[j] = t
    for j in range(d, (i + 1) * d):
        t -= buf0[j - d]
        t += buf0[j]
        t %= 1000000007
        buf1[j] = t
    buf0, buf1 = buf1, buf0

print(buf0[K - N])
0