結果

問題 No.980 Fibonacci Convolution Hard
ユーザー 37zigen37zigen
提出日時 2020-01-31 23:55:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 560 ms / 2,000 ms
コード長 219 bytes
コンパイル時間 294 ms
コンパイル使用メモリ 81,976 KB
実行使用メモリ 92,032 KB
最終ジャッジ日時 2024-09-17 11:44:55
合計ジャッジ時間 11,786 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 534 ms
92,032 KB
testcase_01 AC 531 ms
91,932 KB
testcase_02 AC 528 ms
91,264 KB
testcase_03 AC 524 ms
91,520 KB
testcase_04 AC 528 ms
91,756 KB
testcase_05 AC 529 ms
91,648 KB
testcase_06 AC 536 ms
91,776 KB
testcase_07 AC 532 ms
91,648 KB
testcase_08 AC 553 ms
91,732 KB
testcase_09 AC 560 ms
91,648 KB
testcase_10 AC 525 ms
91,264 KB
testcase_11 AC 545 ms
91,648 KB
testcase_12 AC 521 ms
91,520 KB
testcase_13 AC 544 ms
91,904 KB
testcase_14 AC 536 ms
91,520 KB
testcase_15 AC 544 ms
91,904 KB
testcase_16 AC 497 ms
91,520 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