結果

問題 No.978 Fibonacci Convolution Easy
ユーザー 👑 KazunKazun
提出日時 2021-01-01 17:49:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 118 ms / 2,000 ms
コード長 258 bytes
コンパイル時間 216 ms
コンパイル使用メモリ 81,992 KB
実行使用メモリ 105,856 KB
最終ジャッジ日時 2024-10-11 12:06:27
合計ジャッジ時間 2,497 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
59,136 KB
testcase_01 AC 64 ms
76,800 KB
testcase_02 AC 53 ms
67,840 KB
testcase_03 AC 89 ms
103,552 KB
testcase_04 AC 57 ms
70,048 KB
testcase_05 AC 46 ms
61,056 KB
testcase_06 AC 59 ms
74,112 KB
testcase_07 AC 72 ms
87,552 KB
testcase_08 AC 64 ms
78,464 KB
testcase_09 AC 75 ms
92,032 KB
testcase_10 AC 118 ms
105,472 KB
testcase_11 AC 57 ms
71,552 KB
testcase_12 AC 46 ms
60,800 KB
testcase_13 AC 60 ms
74,112 KB
testcase_14 AC 49 ms
62,592 KB
testcase_15 AC 62 ms
76,032 KB
testcase_16 AC 88 ms
105,856 KB
testcase_17 AC 88 ms
105,344 KB
testcase_18 AC 38 ms
52,352 KB
testcase_19 AC 38 ms
52,352 KB
testcase_20 AC 38 ms
52,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,p=map(int,input().split())
Mod=10**9+7

if N==1:
    print(0)
    exit()

A=[0]*(N+1)
A[2]=1
for i in range(3,N+1):
    A[i]=(p*A[i-1]+A[i-2])%Mod

two_inv=pow(2,Mod-2,Mod)
A=A[1:]

X=(sum(A)**2)%Mod
Y=sum([a*a%Mod for a in A])%Mod
print(two_inv*(X+Y)%Mod)
0