結果

問題 No.978 Fibonacci Convolution Easy
ユーザー NatsubiSoganNatsubiSogan
提出日時 2020-09-30 22:06:03
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 216 bytes
コンパイル時間 125 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 89,216 KB
最終ジャッジ日時 2024-07-06 12:50:12
合計ジャッジ時間 10,975 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
11,648 KB
testcase_01 AC 471 ms
41,344 KB
testcase_02 AC 263 ms
26,240 KB
testcase_03 AC 1,123 ms
86,016 KB
testcase_04 AC 309 ms
29,952 KB
testcase_05 AC 85 ms
14,848 KB
testcase_06 AC 423 ms
37,120 KB
testcase_07 AC 733 ms
59,520 KB
testcase_08 AC 528 ms
44,544 KB
testcase_09 AC 849 ms
66,688 KB
testcase_10 AC 1,159 ms
89,216 KB
testcase_11 AC 349 ms
33,024 KB
testcase_12 AC 78 ms
14,336 KB
testcase_13 AC 418 ms
36,736 KB
testcase_14 AC 132 ms
18,048 KB
testcase_15 AC 454 ms
40,448 KB
testcase_16 AC 1,150 ms
89,216 KB
testcase_17 AC 1,183 ms
88,960 KB
testcase_18 WA -
testcase_19 AC 27 ms
10,752 KB
testcase_20 AC 27 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, p = map(int, input().split())
fib = [0, 1]
for i in range(n - 2):
    fib.append((fib[-1] * p + fib[-2]) % (10 ** 9 + 7))
cnt = 0
for i in fib:
    cnt += i ** 2
print(((sum(fib) ** 2 + cnt) // 2) % (10 ** 9 + 7))
0