結果

問題 No.1892 Extended Fib Series
ユーザー lloyzlloyz
提出日時 2022-05-14 01:10:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 80 ms / 2,000 ms
コード長 349 bytes
コンパイル時間 211 ms
コンパイル使用メモリ 82,404 KB
実行使用メモリ 61,852 KB
最終ジャッジ日時 2024-07-22 06:07:20
合計ジャッジ時間 2,755 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,288 KB
testcase_01 AC 70 ms
61,504 KB
testcase_02 AC 39 ms
51,932 KB
testcase_03 AC 37 ms
51,952 KB
testcase_04 AC 51 ms
60,620 KB
testcase_05 AC 36 ms
52,688 KB
testcase_06 AC 75 ms
61,816 KB
testcase_07 AC 43 ms
60,248 KB
testcase_08 AC 55 ms
61,852 KB
testcase_09 AC 50 ms
61,572 KB
testcase_10 AC 54 ms
61,328 KB
testcase_11 AC 39 ms
52,068 KB
testcase_12 AC 53 ms
60,336 KB
testcase_13 AC 57 ms
61,280 KB
testcase_14 AC 36 ms
53,076 KB
testcase_15 AC 36 ms
53,040 KB
testcase_16 AC 38 ms
52,852 KB
testcase_17 AC 37 ms
52,280 KB
testcase_18 AC 37 ms
52,768 KB
testcase_19 AC 38 ms
53,032 KB
testcase_20 AC 35 ms
52,552 KB
testcase_21 AC 37 ms
53,492 KB
testcase_22 AC 37 ms
53,632 KB
testcase_23 AC 36 ms
51,964 KB
testcase_24 AC 37 ms
52,508 KB
testcase_25 AC 35 ms
52,680 KB
testcase_26 AC 36 ms
53,420 KB
testcase_27 AC 35 ms
52,140 KB
testcase_28 AC 35 ms
52,528 KB
testcase_29 AC 42 ms
59,896 KB
testcase_30 AC 42 ms
60,292 KB
testcase_31 AC 43 ms
59,736 KB
testcase_32 AC 80 ms
59,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, l = map(int, input().split())
mod = 10**9 + 7

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

DP = [0 for _ in range(n + 1)]
DP[0] = 1
for i in range(1, l):
    DP[i] = pow(2, i - 1, mod)
s = 0
for i in range(l):
    s += DP[i]
    s %= mod
for i in range(l, n + 1):
    DP[i] = s
    s -= DP[i - l]
    s += DP[i]
    s %= mod
print(DP[n])
0