結果

問題 No.980 Fibonacci Convolution Hard
ユーザー ayaoniayaoni
提出日時 2020-12-09 18:18:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 952 ms / 2,000 ms
コード長 298 bytes
コンパイル時間 712 ms
コンパイル使用メモリ 81,952 KB
実行使用メモリ 228,136 KB
最終ジャッジ日時 2024-09-19 01:21:37
合計ジャッジ時間 19,417 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 952 ms
206,676 KB
testcase_01 AC 946 ms
206,548 KB
testcase_02 AC 947 ms
207,060 KB
testcase_03 AC 941 ms
206,548 KB
testcase_04 AC 933 ms
206,844 KB
testcase_05 AC 939 ms
206,424 KB
testcase_06 AC 931 ms
206,552 KB
testcase_07 AC 931 ms
206,680 KB
testcase_08 AC 937 ms
206,556 KB
testcase_09 AC 940 ms
206,932 KB
testcase_10 AC 949 ms
206,680 KB
testcase_11 AC 936 ms
206,932 KB
testcase_12 AC 941 ms
206,808 KB
testcase_13 AC 922 ms
206,744 KB
testcase_14 AC 951 ms
206,552 KB
testcase_15 AC 938 ms
206,552 KB
testcase_16 AC 638 ms
228,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

p = int(input())
mod = 10**9+7

B = [1,(2*p) % mod,(3*p**2+2) % mod,(4*p**3+6*p) % mod]
for _ in range(2*10**6):
    B.append((2*p*B[-1]-(p**2-2)*B[-2]-2*p*B[-3]-B[-4]) % mod)

Q = int(input())
for _ in range(Q):
    q = int(input())
    if q <= 3:
        print(0)
    else:
        print(B[q-4])
0