結果

問題 No.978 Fibonacci Convolution Easy
ユーザー H3PO4H3PO4
提出日時 2021-07-28 13:55:59
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 226 bytes
コンパイル時間 295 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 89,052 KB
最終ジャッジ日時 2024-09-13 10:26:31
合計ジャッジ時間 11,775 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
11,520 KB
testcase_01 AC 513 ms
41,056 KB
testcase_02 AC 274 ms
25,984 KB
testcase_03 AC 1,205 ms
85,744 KB
testcase_04 AC 328 ms
29,752 KB
testcase_05 AC 94 ms
14,592 KB
testcase_06 AC 443 ms
37,116 KB
testcase_07 AC 784 ms
59,380 KB
testcase_08 AC 554 ms
44,228 KB
testcase_09 AC 923 ms
66,416 KB
testcase_10 AC 1,272 ms
88,852 KB
testcase_11 AC 376 ms
32,788 KB
testcase_12 AC 85 ms
14,080 KB
testcase_13 AC 432 ms
36,488 KB
testcase_14 AC 144 ms
17,920 KB
testcase_15 AC 493 ms
40,388 KB
testcase_16 AC 1,256 ms
89,052 KB
testcase_17 AC 1,239 ms
88,900 KB
testcase_18 RE -
testcase_19 AC 29 ms
10,624 KB
testcase_20 AC 30 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, p = map(int, input().split())
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