結果

問題 No.978 Fibonacci Convolution Easy
ユーザー NatsubiSoganNatsubiSogan
提出日時 2020-09-30 22:07:56
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,121 ms / 2,000 ms
コード長 250 bytes
コンパイル時間 312 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 89,088 KB
最終ジャッジ日時 2024-07-06 12:53:30
合計ジャッジ時間 10,109 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
11,648 KB
testcase_01 AC 414 ms
41,216 KB
testcase_02 AC 225 ms
26,112 KB
testcase_03 AC 992 ms
85,888 KB
testcase_04 AC 269 ms
29,824 KB
testcase_05 AC 78 ms
14,592 KB
testcase_06 AC 361 ms
36,864 KB
testcase_07 AC 645 ms
59,392 KB
testcase_08 AC 479 ms
44,288 KB
testcase_09 AC 764 ms
66,432 KB
testcase_10 AC 1,121 ms
88,832 KB
testcase_11 AC 310 ms
32,768 KB
testcase_12 AC 69 ms
14,336 KB
testcase_13 AC 369 ms
36,608 KB
testcase_14 AC 123 ms
17,920 KB
testcase_15 AC 412 ms
40,448 KB
testcase_16 AC 1,045 ms
89,088 KB
testcase_17 AC 1,040 ms
88,960 KB
testcase_18 AC 24 ms
10,624 KB
testcase_19 AC 23 ms
10,624 KB
testcase_20 AC 24 ms
10,752 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) if not (n == 1 and p == 1) else 0)
0