結果

問題 No.978 Fibonacci Convolution Easy
ユーザー titiatitia
提出日時 2020-01-31 21:42:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 192 ms / 2,000 ms
コード長 201 bytes
コンパイル時間 185 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 200,448 KB
最終ジャッジ日時 2024-09-18 20:54:13
合計ジャッジ時間 3,101 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
60,672 KB
testcase_01 AC 93 ms
114,048 KB
testcase_02 AC 78 ms
88,832 KB
testcase_03 AC 191 ms
199,552 KB
testcase_04 AC 84 ms
92,928 KB
testcase_05 AC 56 ms
66,304 KB
testcase_06 AC 96 ms
107,392 KB
testcase_07 AC 135 ms
146,816 KB
testcase_08 AC 112 ms
120,832 KB
testcase_09 AC 157 ms
169,216 KB
testcase_10 AC 191 ms
200,448 KB
testcase_11 AC 93 ms
101,888 KB
testcase_12 AC 57 ms
65,536 KB
testcase_13 AC 97 ms
107,520 KB
testcase_14 AC 62 ms
72,064 KB
testcase_15 AC 104 ms
113,536 KB
testcase_16 AC 190 ms
200,064 KB
testcase_17 AC 192 ms
200,064 KB
testcase_18 AC 40 ms
52,096 KB
testcase_19 AC 43 ms
51,712 KB
testcase_20 AC 41 ms
51,584 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