結果

問題 No.980 Fibonacci Convolution Hard
ユーザー mkawa2mkawa2
提出日時 2023-02-21 18:02:45
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,237 bytes
コンパイル時間 168 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 228,352 KB
最終ジャッジ日時 2024-07-22 04:04:54
合計ジャッジ時間 9,272 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 315 ms
228,352 KB
testcase_02 AC 323 ms
228,004 KB
testcase_03 AC 295 ms
228,096 KB
testcase_04 AC 307 ms
228,224 KB
testcase_05 AC 302 ms
228,096 KB
testcase_06 AC 302 ms
227,968 KB
testcase_07 AC 301 ms
227,912 KB
testcase_08 AC 308 ms
228,012 KB
testcase_09 AC 303 ms
228,328 KB
testcase_10 AC 301 ms
228,096 KB
testcase_11 AC 304 ms
228,336 KB
testcase_12 AC 305 ms
227,840 KB
testcase_13 AC 311 ms
228,352 KB
testcase_14 AC 314 ms
227,840 KB
testcase_15 AC 308 ms
227,968 KB
testcase_16 AC 274 ms
228,068 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

# sys.setrecursionlimit(200005)
int1 = lambda x: int(x)-1
pDB = lambda *x: print(*x, end="\n", file=sys.stderr)
p2D = lambda x: print(*x, sep="\n", end="\n\n", file=sys.stderr)
def II(): return int(sys.stdin.readline())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LI1(): return list(map(int1, sys.stdin.readline().split()))
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def SI(): return sys.stdin.readline().rstrip()

# dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)]
inf = (1 << 63)-1
# inf = (1 << 31)-1
md = 10**9+7
# md = 998244353

#   f(x)=[a0, a1, a2, a3...]
# pxf(x)=[0 ,pa0,pa1,pa2,pa3...]
# x2f(x)=[0,   0, a0, a1, a2,a3...]
# (x2+px-1)f(x)=[-a0,-a1+pa0]
# (x4+2px3+(p^2-2)x2-2px+1)f^2(x)=[....]

p = II()
aa = [0, 1]
for _ in range(2):
    aa.append((aa[-2]+aa[-1]*p)%md)
ans = [0]*4
for i in range(4):
    for s in range(i+1):
        ans[i] += aa[s]*aa[i-s]

a, b = 2*p%md, (pow(p, 2, md)-2)%md
for _ in range(2000000):
    ans.append((-ans[-4]-a*ans[-3]-b*ans[-2]+a*ans[-1])%md)

for _ in range(II()):
    q = II()
    print(ans[q-2])
0