結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
11,392 KB
testcase_01 AC 489 ms
41,216 KB
testcase_02 AC 259 ms
26,112 KB
testcase_03 AC 1,126 ms
85,888 KB
testcase_04 AC 309 ms
29,824 KB
testcase_05 AC 88 ms
14,720 KB
testcase_06 AC 414 ms
36,992 KB
testcase_07 AC 741 ms
59,392 KB
testcase_08 AC 517 ms
44,288 KB
testcase_09 AC 839 ms
66,560 KB
testcase_10 AC 1,173 ms
89,088 KB
testcase_11 AC 351 ms
33,024 KB
testcase_12 AC 82 ms
14,208 KB
testcase_13 AC 409 ms
36,608 KB
testcase_14 AC 135 ms
17,920 KB
testcase_15 AC 461 ms
40,448 KB
testcase_16 AC 1,160 ms
89,088 KB
testcase_17 AC 1,186 ms
88,960 KB
testcase_18 WA -
testcase_19 AC 30 ms
10,624 KB
testcase_20 AC 30 ms
10,624 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 = sum(i**2 for i in a)
ans = (pow(sum(a), 2, MOD)+s)*pow(2, MOD-2, MOD)
ans %= MOD
print(ans)
0