結果

問題 No.978 Fibonacci Convolution Easy
ユーザー H3PO4H3PO4
提出日時 2021-07-28 13:57:15
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,274 ms / 2,000 ms
コード長 254 bytes
コンパイル時間 450 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 89,156 KB
最終ジャッジ日時 2024-09-13 10:27:44
合計ジャッジ時間 11,907 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
11,520 KB
testcase_01 AC 504 ms
41,296 KB
testcase_02 AC 274 ms
26,112 KB
testcase_03 AC 1,191 ms
85,800 KB
testcase_04 AC 335 ms
29,832 KB
testcase_05 AC 93 ms
14,592 KB
testcase_06 AC 440 ms
36,992 KB
testcase_07 AC 801 ms
59,156 KB
testcase_08 AC 549 ms
44,200 KB
testcase_09 AC 898 ms
66,412 KB
testcase_10 AC 1,270 ms
88,732 KB
testcase_11 AC 383 ms
32,860 KB
testcase_12 AC 85 ms
14,208 KB
testcase_13 AC 439 ms
36,512 KB
testcase_14 AC 146 ms
18,048 KB
testcase_15 AC 491 ms
40,196 KB
testcase_16 AC 1,274 ms
89,156 KB
testcase_17 AC 1,265 ms
88,640 KB
testcase_18 AC 30 ms
10,752 KB
testcase_19 AC 29 ms
10,752 KB
testcase_20 AC 30 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, p = map(int, input().split())
if N == 1: print(0);exit()

MOD = 10 ** 9 + 7
inv2 = pow(2, MOD - 2, MOD)
a = [0] * N
a[1] = 1
for i in range(2, N):
    a[i] = (p * a[i - 1] + a[i - 2]) % MOD
print(((sum(a) ** 2 + sum(x ** 2 for x in a)) * inv2) % MOD)
0