結果
問題 | No.980 Fibonacci Convolution Hard |
ユーザー | convexineq |
提出日時 | 2020-01-31 22:31:37 |
言語 | PyPy3 (7.3.15) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,086 bytes |
コンパイル時間 | 147 ms |
コンパイル使用メモリ | 82,036 KB |
実行使用メモリ | 114,352 KB |
最終ジャッジ日時 | 2024-09-17 09:07:13 |
合計ジャッジ時間 | 3,606 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
ソースコード
""" def extgcd(x,y): if y==0: return 1,0 #g=x r0,r1,s0,s1 = x,y,1,0 while r1 != 0: r0,r1, s0,s1 = r1,r0%r1, s1,s0-r0//r1*s1 #g = r0 return s0,(r0-s0*x)//y def modinv(a,MOD): x,y = extgcd(a,MOD) return x%MOD """ # coding: utf-8 # Your code here! import sys readline = sys.stdin.readline read = sys.stdin.read p,Q,*q = map(int,read().split()) MOD = 1000000007 #MAX = 2*(10**6) def poly_inverse(f,n): g = [0]*(n+1) df = len(f) g[0] = pow(f[0],MOD-2,MOD) for i in range(1,n): for j in range(1,df): if i+j-2 >= n: break g[i+j-1] += g[i-1]*f[j] g[i+j-1] %= MOD g[i] = -g[0]*g[i]%MOD return g def poly_product(f,g): df = len(f) dg = len(g) res = [0]*(df+dg-1) for i in range(df): for j in range(dg): res[i+j] += f[i]*g[j] res[i+j] %= MOD return res MAX = 10000 f = [1,(-2*p)%MOD,(p*p-2)%MOD,2*p%MOD,1] ans = [0]*4+poly_inverse(f,MAX) #print(ans) #print(poly_product(f,ans)) for i in q: print(ans[i])