結果

問題 No.978 Fibonacci Convolution Easy
ユーザー AEnAEn
提出日時 2022-05-19 09:54:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 199 ms / 2,000 ms
コード長 248 bytes
コンパイル時間 315 ms
コンパイル使用メモリ 82,320 KB
実行使用メモリ 215,784 KB
最終ジャッジ日時 2024-09-17 15:24:25
合計ジャッジ時間 3,236 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
63,724 KB
testcase_01 AC 112 ms
129,560 KB
testcase_02 AC 84 ms
104,488 KB
testcase_03 AC 199 ms
215,036 KB
testcase_04 AC 91 ms
108,484 KB
testcase_05 AC 53 ms
74,200 KB
testcase_06 AC 104 ms
123,140 KB
testcase_07 AC 143 ms
162,372 KB
testcase_08 AC 117 ms
135,816 KB
testcase_09 AC 156 ms
184,500 KB
testcase_10 AC 192 ms
215,648 KB
testcase_11 AC 98 ms
117,392 KB
testcase_12 AC 53 ms
72,532 KB
testcase_13 AC 102 ms
122,940 KB
testcase_14 AC 65 ms
87,340 KB
testcase_15 AC 109 ms
129,068 KB
testcase_16 AC 189 ms
215,640 KB
testcase_17 AC 188 ms
215,784 KB
testcase_18 AC 37 ms
52,616 KB
testcase_19 AC 38 ms
53,188 KB
testcase_20 AC 37 ms
53,244 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, p = map(int, input().split())
a = [0, 1]
mod = 10**9+7
for i in range(2, N):
    a.append((p*a[-1]+a[-2])%mod)
s = 0
ss = 0
for i in range(N):
    s += a[i]
    s %= mod
    ss += a[i]**2
    s %= mod
print(((s**2-ss)*pow(2, mod-2, mod)+ss)%mod)
0