結果

問題 No.1892 Extended Fib Series
ユーザー yassu0320yassu0320
提出日時 2022-04-04 22:33:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 86 ms / 2,000 ms
コード長 349 bytes
コンパイル時間 141 ms
コンパイル使用メモリ 82,388 KB
実行使用メモリ 62,784 KB
最終ジャッジ日時 2024-05-04 07:27:10
合計ジャッジ時間 2,543 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,344 KB
testcase_01 AC 73 ms
61,412 KB
testcase_02 AC 36 ms
53,472 KB
testcase_03 AC 37 ms
52,572 KB
testcase_04 AC 49 ms
60,636 KB
testcase_05 AC 33 ms
53,228 KB
testcase_06 AC 74 ms
62,360 KB
testcase_07 AC 43 ms
60,780 KB
testcase_08 AC 51 ms
62,784 KB
testcase_09 AC 48 ms
62,272 KB
testcase_10 AC 50 ms
60,276 KB
testcase_11 AC 34 ms
52,420 KB
testcase_12 AC 49 ms
61,728 KB
testcase_13 AC 55 ms
61,632 KB
testcase_14 AC 36 ms
52,036 KB
testcase_15 AC 36 ms
52,468 KB
testcase_16 AC 37 ms
53,552 KB
testcase_17 AC 35 ms
52,256 KB
testcase_18 AC 34 ms
53,064 KB
testcase_19 AC 34 ms
52,000 KB
testcase_20 AC 35 ms
52,264 KB
testcase_21 AC 36 ms
53,144 KB
testcase_22 AC 36 ms
52,608 KB
testcase_23 AC 35 ms
52,280 KB
testcase_24 AC 35 ms
52,712 KB
testcase_25 AC 34 ms
53,296 KB
testcase_26 AC 34 ms
52,612 KB
testcase_27 AC 35 ms
52,096 KB
testcase_28 AC 35 ms
51,824 KB
testcase_29 AC 41 ms
60,408 KB
testcase_30 AC 42 ms
61,344 KB
testcase_31 AC 40 ms
62,056 KB
testcase_32 AC 86 ms
61,260 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, l = input().split()
n = int(n)
l = int(l)
mod = 1000000007

if n < l:
    print(pow(2, n - 1, mod))
    exit()

a = [None] * (n + 1)
a[0] = 1
for i in range(1, l):
    a[i] = pow(2, i - 1, mod)

s = 0
for i in range(l):
    s += a[i]
    s %= mod

for i in range(l, n + 1):
    a[i] = s
    s -= a[i - l]
    s += a[i]
    s %= mod

print(a[-1])
0