結果

問題 No.1892 Extended Fib Series
ユーザー yassu0320yassu0320
提出日時 2022-04-04 22:33:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 86 ms / 2,000 ms
コード長 360 bytes
コンパイル時間 885 ms
コンパイル使用メモリ 82,444 KB
実行使用メモリ 62,596 KB
最終ジャッジ日時 2024-11-25 17:05:53
合計ジャッジ時間 3,271 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,392 KB
testcase_01 AC 74 ms
61,636 KB
testcase_02 AC 38 ms
53,100 KB
testcase_03 AC 39 ms
52,336 KB
testcase_04 AC 55 ms
61,300 KB
testcase_05 AC 39 ms
52,324 KB
testcase_06 AC 82 ms
62,220 KB
testcase_07 AC 46 ms
60,564 KB
testcase_08 AC 59 ms
61,804 KB
testcase_09 AC 53 ms
62,020 KB
testcase_10 AC 56 ms
60,880 KB
testcase_11 AC 39 ms
53,456 KB
testcase_12 AC 54 ms
60,232 KB
testcase_13 AC 60 ms
62,596 KB
testcase_14 AC 39 ms
53,776 KB
testcase_15 AC 38 ms
52,076 KB
testcase_16 AC 38 ms
52,204 KB
testcase_17 AC 38 ms
52,028 KB
testcase_18 AC 39 ms
52,556 KB
testcase_19 AC 38 ms
53,016 KB
testcase_20 AC 39 ms
52,740 KB
testcase_21 AC 39 ms
52,708 KB
testcase_22 AC 38 ms
52,668 KB
testcase_23 AC 39 ms
52,572 KB
testcase_24 AC 40 ms
53,296 KB
testcase_25 AC 38 ms
52,736 KB
testcase_26 AC 39 ms
52,788 KB
testcase_27 AC 38 ms
52,236 KB
testcase_28 AC 38 ms
52,360 KB
testcase_29 AC 45 ms
61,212 KB
testcase_30 AC 45 ms
61,200 KB
testcase_31 AC 45 ms
60,476 KB
testcase_32 AC 86 ms
61,900 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)
print(a[-1])
0