結果

問題 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,568 ms / 2,000 ms
コード長 247 bytes
コンパイル時間 182 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 10,624 KB
最終ジャッジ日時 2024-09-18 21:00:27
合計ジャッジ時間 13,355 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
10,624 KB
testcase_01 AC 602 ms
10,496 KB
testcase_02 AC 317 ms
10,496 KB
testcase_03 AC 1,473 ms
10,496 KB
testcase_04 AC 387 ms
10,496 KB
testcase_05 AC 102 ms
10,496 KB
testcase_06 AC 510 ms
10,496 KB
testcase_07 AC 942 ms
10,496 KB
testcase_08 AC 669 ms
10,496 KB
testcase_09 AC 1,085 ms
10,496 KB
testcase_10 AC 1,568 ms
10,496 KB
testcase_11 AC 444 ms
10,496 KB
testcase_12 AC 94 ms
10,496 KB
testcase_13 AC 514 ms
10,624 KB
testcase_14 AC 165 ms
10,496 KB
testcase_15 AC 593 ms
10,496 KB
testcase_16 AC 1,468 ms
10,496 KB
testcase_17 AC 1,468 ms
10,496 KB
testcase_18 AC 26 ms
10,496 KB
testcase_19 AC 25 ms
10,496 KB
testcase_20 AC 25 ms
10,496 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