結果

問題 No.978 Fibonacci Convolution Easy
ユーザー c-yanc-yan
提出日時 2020-11-28 00:32:23
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 359 bytes
コンパイル時間 143 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 167,400 KB
最終ジャッジ日時 2024-07-26 21:25:20
合計ジャッジ時間 22,459 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 60 ms
12,544 KB
testcase_01 AC 1,029 ms
71,808 KB
testcase_02 AC 520 ms
41,580 KB
testcase_03 TLE -
testcase_04 AC 641 ms
48,896 KB
testcase_05 AC 157 ms
18,816 KB
testcase_06 AC 856 ms
63,420 KB
testcase_07 AC 1,620 ms
108,032 KB
testcase_08 AC 1,143 ms
77,836 KB
testcase_09 AC 1,842 ms
122,592 KB
testcase_10 TLE -
testcase_11 AC 769 ms
55,064 KB
testcase_12 AC 143 ms
17,792 KB
testcase_13 AC 885 ms
62,396 KB
testcase_14 AC 260 ms
25,216 KB
testcase_15 AC 993 ms
69,888 KB
testcase_16 TLE -
testcase_17 TLE -
testcase_18 RE -
testcase_19 AC 31 ms
10,752 KB
testcase_20 AC 31 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import accumulate

N, p = map(int, input().split())

m = 1000000007

a = [0] * (N + 1)
a[1] = 0
a[2] = 1
for i in range(3, N + 1):
    a[i] = (p * a[i - 1] + a[i - 2]) % m

c = [0] * (N + 1)
for i in range(1, N + 1):
    c[i] = (c[i - 1] + a[i]) % m

result = 0
for i in range(1, N + 1):
    result += a[i] * c[i]
    result %= m
print(result)
0