結果

問題 No.978 Fibonacci Convolution Easy
ユーザー pluto77pluto77
提出日時 2020-02-02 09:47:11
言語 Python2
(2.7.18)
結果
AC  
実行時間 1,040 ms / 2,000 ms
コード長 220 bytes
コンパイル時間 251 ms
コンパイル使用メモリ 6,944 KB
実行使用メモリ 69,792 KB
最終ジャッジ日時 2024-09-18 21:07:53
合計ジャッジ時間 9,543 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
6,816 KB
testcase_01 AC 430 ms
30,760 KB
testcase_02 AC 214 ms
18,688 KB
testcase_03 AC 998 ms
67,196 KB
testcase_04 AC 264 ms
21,524 KB
testcase_05 AC 65 ms
9,344 KB
testcase_06 AC 362 ms
27,548 KB
testcase_07 AC 664 ms
45,640 KB
testcase_08 AC 454 ms
33,236 KB
testcase_09 AC 740 ms
51,372 KB
testcase_10 AC 1,026 ms
69,632 KB
testcase_11 AC 301 ms
24,104 KB
testcase_12 AC 58 ms
9,088 KB
testcase_13 AC 351 ms
27,040 KB
testcase_14 AC 105 ms
11,904 KB
testcase_15 AC 398 ms
30,244 KB
testcase_16 AC 1,035 ms
69,792 KB
testcase_17 AC 1,040 ms
69,640 KB
testcase_18 AC 11 ms
6,940 KB
testcase_19 AC 11 ms
6,944 KB
testcase_20 AC 11 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#yuki978
import sys
n,p=map(int,raw_input().split())
mod=10**9+7
a1,a2=0,1
res=1
temp=1
if n<=2:
 print(n-1)
 sys.exit()
for i in range(2,n):
 a1,a2=a2,(a2*p+a1)%mod
 temp=(temp+a2)%mod
 res=(res+a2*temp)%mod
print(res)
0