結果

問題 No.1011 Infinite Stairs
ユーザー c-yanc-yan
提出日時 2020-03-21 08:29:11
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 538 bytes
コンパイル時間 95 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 88,052 KB
最終ジャッジ日時 2024-12-17 20:22:37
合計ジャッジ時間 54,996 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 493 ms
50,436 KB
testcase_01 AC 500 ms
50,652 KB
testcase_02 AC 924 ms
50,792 KB
testcase_03 TLE -
testcase_04 TLE -
testcase_05 TLE -
testcase_06 AC 480 ms
50,524 KB
testcase_07 TLE -
testcase_08 AC 475 ms
50,784 KB
testcase_09 AC 472 ms
87,796 KB
testcase_10 AC 993 ms
50,536 KB
testcase_11 TLE -
testcase_12 AC 681 ms
50,648 KB
testcase_13 TLE -
testcase_14 AC 728 ms
50,772 KB
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 AC 542 ms
43,704 KB
testcase_20 AC 872 ms
43,576 KB
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 AC 1,537 ms
87,928 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np

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

N = np.int64(N)
d = np.int64(d)
K = np.int64(K)

buf0 = np.zeros(d * N + K + 1, dtype = np.int64)
buf1 = np.zeros(d * N + K + 1, dtype = np.int64)
buf0[0] = 1

M = np.int64(1000000007)

for i in np.arange(N):
    t = np.int64(0)
    for j in np.arange(d):
        t += buf0[j]
        t %= M
        buf1[j] = t
    for j in np.arange(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