結果

問題 No.980 Fibonacci Convolution Hard
ユーザー Eki1009Eki1009
提出日時 2020-11-01 18:23:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,091 ms / 2,000 ms
コード長 273 bytes
コンパイル時間 179 ms
コンパイル使用メモリ 82,760 KB
実行使用メモリ 124,296 KB
最終ジャッジ日時 2024-07-22 05:48:01
合計ジャッジ時間 20,483 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,066 ms
123,932 KB
testcase_01 AC 1,041 ms
123,964 KB
testcase_02 AC 1,043 ms
123,836 KB
testcase_03 AC 1,044 ms
124,288 KB
testcase_04 AC 1,036 ms
123,972 KB
testcase_05 AC 1,029 ms
124,052 KB
testcase_06 AC 1,048 ms
124,228 KB
testcase_07 AC 1,028 ms
124,000 KB
testcase_08 AC 1,026 ms
123,972 KB
testcase_09 AC 1,052 ms
124,176 KB
testcase_10 AC 1,047 ms
124,096 KB
testcase_11 AC 1,046 ms
123,972 KB
testcase_12 AC 1,065 ms
124,296 KB
testcase_13 AC 1,047 ms
123,708 KB
testcase_14 AC 1,091 ms
123,968 KB
testcase_15 AC 1,037 ms
124,052 KB
testcase_16 AC 489 ms
91,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 10**9+7
m = 2*10**6
p = int(input())
C = [2*p, 2-p**2, -2*p, -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