結果

問題 No.1011 Infinite Stairs
ユーザー c-yanc-yan
提出日時 2020-06-21 07:52:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 138 ms / 2,000 ms
コード長 417 bytes
コンパイル時間 146 ms
コンパイル使用メモリ 82,332 KB
実行使用メモリ 64,120 KB
最終ジャッジ日時 2024-07-17 12:10:28
合計ジャッジ時間 2,763 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,112 KB
testcase_01 AC 36 ms
53,668 KB
testcase_02 AC 49 ms
60,232 KB
testcase_03 AC 111 ms
63,064 KB
testcase_04 AC 138 ms
63,676 KB
testcase_05 AC 138 ms
64,120 KB
testcase_06 AC 39 ms
52,816 KB
testcase_07 AC 54 ms
59,424 KB
testcase_08 AC 36 ms
53,028 KB
testcase_09 AC 37 ms
52,452 KB
testcase_10 AC 46 ms
61,024 KB
testcase_11 AC 84 ms
62,464 KB
testcase_12 AC 43 ms
58,924 KB
testcase_13 AC 63 ms
60,308 KB
testcase_14 AC 45 ms
59,408 KB
testcase_15 AC 58 ms
62,008 KB
testcase_16 AC 109 ms
62,740 KB
testcase_17 AC 113 ms
62,132 KB
testcase_18 AC 72 ms
61,816 KB
testcase_19 AC 42 ms
59,908 KB
testcase_20 AC 44 ms
59,540 KB
testcase_21 AC 57 ms
60,804 KB
testcase_22 AC 104 ms
63,252 KB
testcase_23 AC 58 ms
61,752 KB
testcase_24 AC 56 ms
60,240 KB
testcase_25 AC 75 ms
62,000 KB
testcase_26 AC 49 ms
59,864 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# PyPy でのみ AC
N, d, K = map(int, input().split())

m = 1000000007

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 %= m
        buf1[j] = t
    for j in range(d, (i + 1) * d):
        t -= buf0[j - d]
        t += buf0[j]
        t %= m
        buf1[j] = t
    buf0, buf1 = buf1, buf0

print(buf0[K - N])
0