結果

問題 No.1892 Extended Fib Series
ユーザー yassu0320yassu0320
提出日時 2022-04-04 22:35:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 87 ms / 2,000 ms
コード長 348 bytes
コンパイル時間 267 ms
コンパイル使用メモリ 82,252 KB
実行使用メモリ 62,288 KB
最終ジャッジ日時 2024-05-04 07:29:33
合計ジャッジ時間 3,229 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,576 KB
testcase_01 AC 77 ms
61,796 KB
testcase_02 AC 38 ms
53,440 KB
testcase_03 AC 39 ms
52,016 KB
testcase_04 AC 56 ms
60,644 KB
testcase_05 AC 40 ms
52,948 KB
testcase_06 AC 82 ms
61,872 KB
testcase_07 AC 45 ms
60,928 KB
testcase_08 AC 58 ms
61,208 KB
testcase_09 AC 54 ms
61,776 KB
testcase_10 AC 58 ms
61,336 KB
testcase_11 AC 40 ms
53,060 KB
testcase_12 AC 54 ms
60,840 KB
testcase_13 AC 62 ms
62,048 KB
testcase_14 AC 38 ms
51,688 KB
testcase_15 AC 40 ms
52,492 KB
testcase_16 AC 40 ms
52,216 KB
testcase_17 AC 38 ms
52,936 KB
testcase_18 AC 39 ms
51,908 KB
testcase_19 AC 40 ms
53,248 KB
testcase_20 AC 40 ms
52,004 KB
testcase_21 AC 40 ms
51,996 KB
testcase_22 AC 40 ms
53,240 KB
testcase_23 AC 39 ms
52,136 KB
testcase_24 AC 40 ms
52,632 KB
testcase_25 AC 40 ms
52,208 KB
testcase_26 AC 40 ms
53,036 KB
testcase_27 AC 39 ms
52,560 KB
testcase_28 AC 39 ms
53,492 KB
testcase_29 AC 46 ms
60,196 KB
testcase_30 AC 48 ms
62,048 KB
testcase_31 AC 47 ms
60,380 KB
testcase_32 AC 87 ms
62,288 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[n])
0