結果

問題 No.978 Fibonacci Convolution Easy
ユーザー titiatitia
提出日時 2020-01-31 21:42:44
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 201 bytes
コンパイル時間 170 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 89,344 KB
最終ジャッジ日時 2024-09-17 07:32:14
合計ジャッジ時間 18,151 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
11,648 KB
testcase_01 AC 873 ms
41,472 KB
testcase_02 AC 467 ms
26,240 KB
testcase_03 AC 1,881 ms
86,144 KB
testcase_04 AC 524 ms
29,952 KB
testcase_05 AC 127 ms
14,848 KB
testcase_06 AC 696 ms
37,120 KB
testcase_07 AC 1,281 ms
59,520 KB
testcase_08 AC 848 ms
44,416 KB
testcase_09 AC 1,586 ms
66,688 KB
testcase_10 TLE -
testcase_11 AC 580 ms
33,152 KB
testcase_12 AC 121 ms
14,336 KB
testcase_13 AC 685 ms
36,736 KB
testcase_14 AC 213 ms
18,048 KB
testcase_15 AC 790 ms
40,448 KB
testcase_16 TLE -
testcase_17 TLE -
testcase_18 AC 26 ms
10,752 KB
testcase_19 AC 27 ms
10,752 KB
testcase_20 AC 26 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,p=map(int,input().split())
mod=1000000007

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

S=0
ANS=0
for i in range(N):
    S+=A[i]
    ANS+=S*A[i]
    S%=mod
    ANS%=mod

print(ANS)
0