結果

問題 No.1892 Extended Fib Series
ユーザー roarisroaris
提出日時 2022-10-08 19:29:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 44 ms / 2,000 ms
コード長 226 bytes
コンパイル時間 198 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 61,136 KB
最終ジャッジ日時 2024-06-22 22:09:28
合計ジャッジ時間 2,620 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
58,976 KB
testcase_01 AC 43 ms
60,564 KB
testcase_02 AC 42 ms
59,064 KB
testcase_03 AC 41 ms
58,820 KB
testcase_04 AC 44 ms
60,256 KB
testcase_05 AC 40 ms
59,108 KB
testcase_06 AC 43 ms
59,916 KB
testcase_07 AC 42 ms
59,592 KB
testcase_08 AC 43 ms
59,648 KB
testcase_09 AC 44 ms
59,792 KB
testcase_10 AC 44 ms
60,704 KB
testcase_11 AC 40 ms
59,104 KB
testcase_12 AC 43 ms
59,680 KB
testcase_13 AC 44 ms
60,616 KB
testcase_14 AC 36 ms
52,224 KB
testcase_15 AC 35 ms
52,408 KB
testcase_16 AC 37 ms
52,392 KB
testcase_17 AC 36 ms
52,608 KB
testcase_18 AC 37 ms
52,644 KB
testcase_19 AC 39 ms
51,884 KB
testcase_20 AC 37 ms
52,120 KB
testcase_21 AC 37 ms
52,692 KB
testcase_22 AC 36 ms
52,340 KB
testcase_23 AC 37 ms
52,092 KB
testcase_24 AC 38 ms
52,788 KB
testcase_25 AC 37 ms
53,824 KB
testcase_26 AC 38 ms
52,348 KB
testcase_27 AC 36 ms
52,760 KB
testcase_28 AC 37 ms
54,104 KB
testcase_29 AC 43 ms
59,284 KB
testcase_30 AC 43 ms
60,032 KB
testcase_31 AC 44 ms
61,136 KB
testcase_32 AC 42 ms
58,960 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, L = map(int, input().split())
dp = [0]*(N+1)
dp[0] = 1
acc = 1
MOD = 10**9+7

for i in range(1, N+1):
    dp[i] = acc
    acc += dp[i]
    acc %= MOD
    
    if i>=L:
        acc -= dp[i-L]
        acc %= MOD

print(dp[N])
0