結果

問題 No.978 Fibonacci Convolution Easy
ユーザー ptotqptotq
提出日時 2020-01-31 22:28:02
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,492 ms / 2,000 ms
コード長 247 bytes
コンパイル時間 96 ms
コンパイル使用メモリ 11,812 KB
実行使用メモリ 10,060 KB
最終ジャッジ日時 2023-10-19 01:04:40
合計ジャッジ時間 13,811 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
10,060 KB
testcase_01 AC 618 ms
10,060 KB
testcase_02 AC 326 ms
10,060 KB
testcase_03 AC 1,469 ms
10,060 KB
testcase_04 AC 399 ms
10,060 KB
testcase_05 AC 105 ms
10,060 KB
testcase_06 AC 544 ms
10,060 KB
testcase_07 AC 987 ms
10,060 KB
testcase_08 AC 664 ms
10,060 KB
testcase_09 AC 1,145 ms
10,060 KB
testcase_10 AC 1,492 ms
10,060 KB
testcase_11 AC 449 ms
10,060 KB
testcase_12 AC 99 ms
10,060 KB
testcase_13 AC 534 ms
10,060 KB
testcase_14 AC 166 ms
10,060 KB
testcase_15 AC 577 ms
10,060 KB
testcase_16 AC 1,468 ms
10,060 KB
testcase_17 AC 1,463 ms
10,060 KB
testcase_18 AC 30 ms
10,060 KB
testcase_19 AC 29 ms
10,060 KB
testcase_20 AC 29 ms
10,060 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, p = map(int, input().split())
mod = 10**9 + 7
a1, a2 = 0, 1
acc, ans = 1, 1

if N <= 2:
    print(N-1)
    exit()

for i in range(2, N):
    a1, a2 = a2, (a2*p + a1) % mod
    acc = (acc + a2) % mod
    ans = (ans + a2 * acc) % mod

print(ans)
0