結果

問題 No.978 Fibonacci Convolution Easy
ユーザー brthyyjpbrthyyjp
提出日時 2020-12-19 02:02:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 408 ms / 2,000 ms
コード長 307 bytes
コンパイル時間 347 ms
コンパイル使用メモリ 82,364 KB
実行使用メモリ 186,632 KB
最終ジャッジ日時 2024-09-21 09:50:07
合計ジャッジ時間 5,235 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
67,072 KB
testcase_01 AC 177 ms
140,160 KB
testcase_02 AC 118 ms
106,880 KB
testcase_03 AC 377 ms
169,948 KB
testcase_04 AC 133 ms
115,584 KB
testcase_05 AC 68 ms
82,432 KB
testcase_06 AC 160 ms
127,104 KB
testcase_07 AC 256 ms
151,552 KB
testcase_08 AC 192 ms
141,696 KB
testcase_09 AC 284 ms
152,704 KB
testcase_10 AC 404 ms
186,632 KB
testcase_11 AC 150 ms
121,028 KB
testcase_12 AC 66 ms
81,536 KB
testcase_13 AC 161 ms
126,976 KB
testcase_14 AC 82 ms
88,832 KB
testcase_15 AC 171 ms
133,888 KB
testcase_16 AC 408 ms
186,280 KB
testcase_17 AC 393 ms
186,536 KB
testcase_18 AC 37 ms
51,968 KB
testcase_19 AC 38 ms
51,584 KB
testcase_20 AC 38 ms
52,332 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, p = map(int, input().split())
mod = 10**9+7

if n == 1:
    print(0)
    exit()

A = [0]*n
A[0] = 0
A[1] = 1
for i in range(2, n):
    A[i] = p*A[i-1]+A[i-2]
    A[i] %= mod

from itertools import accumulate
C = list(accumulate(A))
ans = 0
for a, c in zip(A, C):
    ans += a*c
    ans %= mod
print(ans)
0