結果

問題 No.978 Fibonacci Convolution Easy
ユーザー r_ishidar_ishida
提出日時 2020-02-01 18:21:31
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,184 ms / 2,000 ms
コード長 281 bytes
コンパイル時間 85 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 89,088 KB
最終ジャッジ日時 2024-09-18 21:07:42
合計ジャッジ時間 10,880 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
11,648 KB
testcase_01 AC 498 ms
41,216 KB
testcase_02 AC 254 ms
26,112 KB
testcase_03 AC 1,164 ms
86,144 KB
testcase_04 AC 319 ms
29,952 KB
testcase_05 AC 92 ms
14,592 KB
testcase_06 AC 415 ms
37,120 KB
testcase_07 AC 747 ms
59,392 KB
testcase_08 AC 521 ms
44,416 KB
testcase_09 AC 855 ms
66,688 KB
testcase_10 AC 1,161 ms
89,088 KB
testcase_11 AC 363 ms
33,024 KB
testcase_12 AC 82 ms
14,336 KB
testcase_13 AC 413 ms
36,608 KB
testcase_14 AC 136 ms
17,920 KB
testcase_15 AC 462 ms
40,320 KB
testcase_16 AC 1,184 ms
89,088 KB
testcase_17 AC 1,165 ms
88,960 KB
testcase_18 AC 29 ms
10,752 KB
testcase_19 AC 29 ms
10,752 KB
testcase_20 AC 30 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, p = map(int,input().split())
MOD = 10**9+7
if n == 1:
    print(0)
    exit(0)
elif n == 2:
    print(1)
    exit(0)
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