結果

問題 No.978 Fibonacci Convolution Easy
ユーザー mlihua09mlihua09
提出日時 2020-09-21 11:20:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 173 ms / 2,000 ms
コード長 311 bytes
コンパイル時間 334 ms
コンパイル使用メモリ 82,200 KB
実行使用メモリ 158,536 KB
最終ジャッジ日時 2024-06-24 11:29:27
合計ジャッジ時間 3,547 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
63,236 KB
testcase_01 AC 109 ms
122,760 KB
testcase_02 AC 79 ms
102,624 KB
testcase_03 AC 173 ms
158,432 KB
testcase_04 AC 84 ms
110,020 KB
testcase_05 AC 54 ms
71,508 KB
testcase_06 AC 101 ms
122,680 KB
testcase_07 AC 130 ms
132,136 KB
testcase_08 AC 108 ms
122,748 KB
testcase_09 AC 144 ms
156,060 KB
testcase_10 AC 169 ms
158,256 KB
testcase_11 AC 91 ms
120,600 KB
testcase_12 AC 53 ms
69,424 KB
testcase_13 AC 98 ms
122,872 KB
testcase_14 AC 62 ms
78,904 KB
testcase_15 AC 103 ms
122,572 KB
testcase_16 AC 169 ms
158,536 KB
testcase_17 AC 172 ms
158,300 KB
testcase_18 AC 37 ms
51,824 KB
testcase_19 AC 37 ms
53,128 KB
testcase_20 AC 38 ms
52,972 KB
権限があれば一括ダウンロードができます

ソースコード

diff #


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

A = [0, 1]

for i in range(N - 2):
    
    A += [(A[-1] * p + A[-2]) % mod]
    
a = A.copy()

for i in range(1, N):
    a[i] += a[i - 1]
    a[i] %= mod
    
ans = 0

for i in range(N):
    
    ans += A[i] * a[i] % mod
    ans %= mod
    
    
print(ans)
0