結果

問題 No.978 Fibonacci Convolution Easy
ユーザー 双六双六
提出日時 2020-08-06 17:11:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 157 ms / 2,000 ms
コード長 613 bytes
コンパイル時間 872 ms
コンパイル使用メモリ 81,820 KB
実行使用メモリ 208,456 KB
最終ジャッジ日時 2024-09-21 07:24:48
合計ジャッジ時間 2,919 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
64,132 KB
testcase_01 AC 98 ms
119,084 KB
testcase_02 AC 75 ms
88,832 KB
testcase_03 AC 153 ms
206,448 KB
testcase_04 AC 82 ms
96,128 KB
testcase_05 AC 55 ms
69,140 KB
testcase_06 AC 90 ms
111,632 KB
testcase_07 AC 117 ms
152,044 KB
testcase_08 AC 101 ms
125,016 KB
testcase_09 AC 127 ms
164,548 KB
testcase_10 AC 153 ms
208,028 KB
testcase_11 AC 84 ms
102,056 KB
testcase_12 AC 55 ms
67,644 KB
testcase_13 AC 92 ms
112,908 KB
testcase_14 AC 62 ms
74,604 KB
testcase_15 AC 95 ms
117,828 KB
testcase_16 AC 154 ms
207,704 KB
testcase_17 AC 157 ms
208,456 KB
testcase_18 AC 42 ms
54,396 KB
testcase_19 AC 42 ms
55,264 KB
testcase_20 AC 43 ms
54,844 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys; input = sys.stdin.buffer.readline
sys.setrecursionlimit(10**7)
from collections import defaultdict
con = 10 ** 9 + 7; INF = float("inf")

def getlist():
	return list(map(int, input().split()))

#処理内容
def main():
	N, P = getlist()
	Alist = [0, 0, 1]
	for i in range(N):
		Alist.append((Alist[-1] * P + Alist[-2]) % con)

	# print(Alist)

	ans = 0
	edge = 0
	for i in range(1, N + 1):
		edge += Alist[i]
		edge %= con
	ans = (edge ** 2) % con

	for i in range(1, N + 1):
		ans += Alist[i] ** 2
		ans %= con

	ans = ans * pow(2, con - 2, con)
	print(ans % con)

if __name__ == '__main__':
	main()
0