結果

問題 No.978 Fibonacci Convolution Easy
ユーザー tktk_snsntktk_snsn
提出日時 2020-06-06 13:59:06
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 327 bytes
コンパイル時間 305 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 174,108 KB
最終ジャッジ日時 2024-06-06 01:45:48
合計ジャッジ時間 15,042 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 58 ms
19,484 KB
testcase_01 AC 1,081 ms
71,680 KB
testcase_02 AC 543 ms
41,600 KB
testcase_03 TLE -
testcase_04 AC 680 ms
48,896 KB
testcase_05 AC 168 ms
18,688 KB
testcase_06 AC 924 ms
63,360 KB
testcase_07 AC 1,714 ms
108,032 KB
testcase_08 AC 1,222 ms
77,824 KB
testcase_09 AC 1,933 ms
122,496 KB
testcase_10 TLE -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 10 ** 9 + 7

N, p = map(int, input().split())
A = [0, 1]
for i in range(N - 2):
    v = p * A[-1] + A[-2]
    A.append(v % mod)

Acum = [0]
for a in A:
    v = Acum[-1] + a
    Acum.append(v % mod)

ans = 0
Asum = Acum[-1]
for i, a in enumerate(A):
    v = a * (Asum - Acum[i]) % mod
    ans = (ans + v) % mod

print(ans)
0