結果
問題 | No.978 Fibonacci Convolution Easy |
ユーザー | takakin |
提出日時 | 2020-05-24 16:34:40 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 440 bytes |
コンパイル時間 | 94 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 166,212 KB |
最終ジャッジ日時 | 2024-10-11 20:56:44 |
合計ジャッジ時間 | 5,544 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 65 ms
18,048 KB |
testcase_01 | AC | 1,243 ms
71,756 KB |
testcase_02 | AC | 639 ms
41,544 KB |
testcase_03 | TLE | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
ソースコード
import sys input=lambda: sys.stdin.readline().rstrip() n,p=map(int,input().split()) mod=10**9+7 if n==1: print(0) elif n==2: print(1) else: A=[0,1] B=[0,1] for _ in range(n-2): a=p*A[-1]+A[-2] if a>=mod: a%=mod b=pow(a,2,mod) A.append(a) B.append(b) a,b=0,0 for i in range(n): a+=A[i] if a>=mod: a%=mod b+=B[i] if b>=mod: b%=mod print(((a**2+b)*pow(2,mod-2,mod))%mod)