結果

問題 No.980 Fibonacci Convolution Hard
ユーザー 37zigen37zigen
提出日時 2020-02-01 00:00:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 586 ms / 2,000 ms
コード長 211 bytes
コンパイル時間 163 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 92,032 KB
最終ジャッジ日時 2024-09-17 11:48:33
合計ジャッジ時間 11,654 ms
ジャッジサーバーID
(参考情報)
judge2 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 523 ms
91,776 KB
testcase_01 AC 501 ms
91,776 KB
testcase_02 AC 501 ms
91,796 KB
testcase_03 AC 509 ms
91,876 KB
testcase_04 AC 513 ms
91,756 KB
testcase_05 AC 551 ms
91,776 KB
testcase_06 AC 511 ms
91,820 KB
testcase_07 AC 586 ms
92,032 KB
testcase_08 AC 561 ms
91,520 KB
testcase_09 AC 499 ms
91,776 KB
testcase_10 AC 526 ms
91,732 KB
testcase_11 AC 572 ms
91,520 KB
testcase_12 AC 499 ms
92,020 KB
testcase_13 AC 570 ms
91,772 KB
testcase_14 AC 480 ms
91,788 KB
testcase_15 AC 491 ms
92,032 KB
testcase_16 AC 451 ms
91,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

M=2000001
m=10**9+7
p=int(input())
b=[0]*M
b[4]=1
x=p*p%m
for i in range(5,M) : 
    b[i]=(2*p*b[i-1]+(2-x)*b[i-2]-2*p*b[i-3]-b[i-4])%m
q=int(input())
for i in range(q): 
    x=int(input())
    print((b[x]+m)%m)
0