結果

問題 No.978 Fibonacci Convolution Easy
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2023-01-18 07:00:00
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 394 bytes
コンパイル時間 369 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 77,312 KB
最終ジャッジ日時 2024-06-11 10:15:56
合計ジャッジ時間 2,639 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
61,952 KB
testcase_01 AC 62 ms
67,840 KB
testcase_02 AC 56 ms
64,896 KB
testcase_03 AC 78 ms
76,544 KB
testcase_04 AC 57 ms
65,664 KB
testcase_05 AC 50 ms
62,464 KB
testcase_06 AC 59 ms
66,944 KB
testcase_07 AC 69 ms
71,296 KB
testcase_08 AC 61 ms
68,224 KB
testcase_09 AC 73 ms
72,704 KB
testcase_10 AC 82 ms
77,184 KB
testcase_11 AC 56 ms
66,048 KB
testcase_12 AC 51 ms
62,336 KB
testcase_13 AC 60 ms
67,072 KB
testcase_14 AC 52 ms
63,104 KB
testcase_15 AC 60 ms
67,584 KB
testcase_16 AC 85 ms
77,312 KB
testcase_17 AC 85 ms
77,184 KB
testcase_18 RE -
testcase_19 AC 44 ms
55,040 KB
testcase_20 AC 44 ms
55,424 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *
from itertools import *
from functools import *
from heapq import *
import sys,math
input = sys.stdin.readline

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

a = [0]*(N+1)
a[2]=1
ans = 0
S = 0
if N==1:
    print(0)
    exit()
ans = 1
S = 1
for i in range(3,N+1):
    a[i]=(p*a[i-1]+a[i-2])%mod
    S += a[i]
    ans += S*a[i]
    ans %= mod
    S %= mod
print(ans)

0