結果

問題 No.978 Fibonacci Convolution Easy
ユーザー r_ishidar_ishida
提出日時 2020-02-01 18:11:49
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 252 bytes
コンパイル時間 101 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 89,216 KB
最終ジャッジ日時 2024-09-18 20:09:49
合計ジャッジ時間 18,059 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
11,648 KB
testcase_01 AC 811 ms
41,216 KB
testcase_02 AC 416 ms
26,112 KB
testcase_03 AC 1,927 ms
85,888 KB
testcase_04 AC 526 ms
29,824 KB
testcase_05 AC 136 ms
14,848 KB
testcase_06 AC 690 ms
37,120 KB
testcase_07 AC 1,254 ms
59,392 KB
testcase_08 AC 880 ms
44,288 KB
testcase_09 AC 1,472 ms
66,560 KB
testcase_10 TLE -
testcase_11 AC 590 ms
32,896 KB
testcase_12 AC 122 ms
14,464 KB
testcase_13 AC 665 ms
36,608 KB
testcase_14 AC 211 ms
18,176 KB
testcase_15 AC 804 ms
40,320 KB
testcase_16 AC 1,979 ms
89,216 KB
testcase_17 TLE -
testcase_18 WA -
testcase_19 AC 30 ms
10,880 KB
testcase_20 AC 31 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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