結果

問題 No.978 Fibonacci Convolution Easy
ユーザー takakintakakin
提出日時 2020-05-24 16:32:22
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 362 bytes
コンパイル時間 213 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 167,572 KB
最終ジャッジ日時 2024-10-11 20:49:25
合計ジャッジ時間 22,333 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 59 ms
12,544 KB
testcase_01 AC 998 ms
71,696 KB
testcase_02 AC 522 ms
41,492 KB
testcase_03 TLE -
testcase_04 AC 637 ms
49,040 KB
testcase_05 AC 158 ms
18,836 KB
testcase_06 AC 876 ms
63,380 KB
testcase_07 AC 1,576 ms
108,048 KB
testcase_08 AC 1,069 ms
77,848 KB
testcase_09 AC 1,815 ms
122,512 KB
testcase_10 TLE -
testcase_11 AC 742 ms
55,060 KB
testcase_12 AC 142 ms
17,944 KB
testcase_13 AC 866 ms
62,612 KB
testcase_14 AC 258 ms
25,360 KB
testcase_15 AC 960 ms
69,908 KB
testcase_16 TLE -
testcase_17 TLE -
testcase_18 AC 28 ms
10,752 KB
testcase_19 AC 29 ms
10,752 KB
testcase_20 AC 28 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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.append((p*A[-1]+A[-2])%mod)
    B.append((A[-1]**2)%mod)
  a,b=0,0
  for i in range(n):
    a=(a+A[i])%mod
    b=(b+B[i])%mod
  print(((a**2+b)*pow(2,mod-2,mod))%mod)
  
0