結果

問題 No.980 Fibonacci Convolution Hard
ユーザー chinchillachinchilla
提出日時 2020-02-29 13:19:43
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,297 ms / 2,000 ms
コード長 364 bytes
コンパイル時間 145 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 103,300 KB
最終ジャッジ日時 2024-10-13 19:57:40
合計ジャッジ時間 27,303 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,297 ms
98,636 KB
testcase_01 AC 1,202 ms
99,180 KB
testcase_02 AC 1,192 ms
102,100 KB
testcase_03 AC 1,186 ms
102,528 KB
testcase_04 AC 1,198 ms
102,328 KB
testcase_05 AC 1,177 ms
102,128 KB
testcase_06 AC 1,180 ms
101,604 KB
testcase_07 AC 1,189 ms
101,596 KB
testcase_08 AC 1,184 ms
102,180 KB
testcase_09 AC 1,216 ms
102,100 KB
testcase_10 AC 1,278 ms
101,768 KB
testcase_11 AC 1,177 ms
101,044 KB
testcase_12 AC 1,181 ms
101,992 KB
testcase_13 AC 1,192 ms
101,332 KB
testcase_14 AC 1,185 ms
102,252 KB
testcase_15 AC 1,187 ms
102,836 KB
testcase_16 AC 1,176 ms
103,300 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys, numpy as np
m = 10**9+7
p, _ = int(input()), input()
q = np.genfromtxt(sys.stdin, int) - 2
M = np.asarray([[-p, 0], [-p, 2]], 'i8')*pow(4+p**2, -1, m)%m
N = np.matrix([[0, 1], [1, p]], 'i8')
T = np.eye(2, 2**21, -1, 'i8')
for i in range(21):
	T[:, 2**i:2**(i+1)] = N * T[:, :2**i] % m
	N = N**2%m
C = M @ T[:, q] % m
print(*((q*C[1]+C[0])%m), sep='\n')
0