結果

問題 No.1011 Infinite Stairs
ユーザー tktk_snsntktk_snsn
提出日時 2020-12-16 20:58:37
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,387 ms / 2,000 ms
コード長 234 bytes
コンパイル時間 217 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 43,704 KB
最終ジャッジ日時 2024-07-17 12:16:13
合計ジャッジ時間 21,771 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 530 ms
43,300 KB
testcase_01 AC 527 ms
43,436 KB
testcase_02 AC 551 ms
43,436 KB
testcase_03 AC 1,090 ms
43,440 KB
testcase_04 AC 635 ms
43,448 KB
testcase_05 AC 1,387 ms
43,428 KB
testcase_06 AC 529 ms
43,444 KB
testcase_07 AC 537 ms
43,292 KB
testcase_08 AC 525 ms
43,684 KB
testcase_09 AC 529 ms
43,436 KB
testcase_10 AC 530 ms
43,304 KB
testcase_11 AC 650 ms
43,436 KB
testcase_12 AC 548 ms
43,440 KB
testcase_13 AC 606 ms
43,300 KB
testcase_14 AC 530 ms
43,296 KB
testcase_15 AC 623 ms
43,704 KB
testcase_16 AC 939 ms
43,184 KB
testcase_17 AC 569 ms
43,440 KB
testcase_18 AC 755 ms
43,312 KB
testcase_19 AC 528 ms
43,180 KB
testcase_20 AC 529 ms
43,292 KB
testcase_21 AC 622 ms
43,444 KB
testcase_22 AC 723 ms
43,676 KB
testcase_23 AC 635 ms
43,440 KB
testcase_24 AC 647 ms
43,312 KB
testcase_25 AC 730 ms
43,436 KB
testcase_26 AC 570 ms
43,440 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np
mod = 10 ** 9 + 7

N, d, K = map(int, input().split())
dp = np.zeros(K + 1, dtype=np.int64)
dp[0] = 1

for _ in range(N):
    np.cumsum(dp, out=dp)
    dp %= mod
    dp[d:] -= dp[:-d]
    dp %= mod

print(dp[K - N])
0