結果

問題 No.980 Fibonacci Convolution Hard
ユーザー Eki1009Eki1009
提出日時 2020-11-01 18:25:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 536 ms / 2,000 ms
コード長 291 bytes
コンパイル時間 252 ms
コンパイル使用メモリ 82,220 KB
実行使用メモリ 92,136 KB
最終ジャッジ日時 2024-07-22 05:48:14
合計ジャッジ時間 11,925 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 508 ms
92,132 KB
testcase_01 AC 498 ms
91,944 KB
testcase_02 AC 517 ms
91,604 KB
testcase_03 AC 502 ms
92,088 KB
testcase_04 AC 520 ms
92,136 KB
testcase_05 AC 496 ms
91,936 KB
testcase_06 AC 492 ms
91,824 KB
testcase_07 AC 518 ms
92,120 KB
testcase_08 AC 501 ms
91,920 KB
testcase_09 AC 536 ms
91,956 KB
testcase_10 AC 492 ms
92,120 KB
testcase_11 AC 508 ms
91,828 KB
testcase_12 AC 486 ms
91,880 KB
testcase_13 AC 513 ms
92,068 KB
testcase_14 AC 522 ms
91,644 KB
testcase_15 AC 508 ms
91,676 KB
testcase_16 AC 477 ms
91,748 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 10**9+7
m = 2*10**6
p = int(input())
C = [(2*p)%mod, (2-p**2)%mod, (-2*p)%mod, -1]
E = [0]*(m+1)
E[3] = 1
for i in range(4, m+1):
    E[i] = C[0]*E[i-1] + C[1]*E[i-2] + C[2]*E[i-3] + C[3]*E[i-4]
    E[i] %= mod
q = int(input())
for _ in range(q):
    n = int(input())
    print(E[n-1])
0