結果

問題 No.980 Fibonacci Convolution Hard
ユーザー 37zigen37zigen
提出日時 2020-01-31 22:38:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 817 ms / 2,000 ms
コード長 223 bytes
コンパイル時間 157 ms
コンパイル使用メモリ 82,196 KB
実行使用メモリ 92,260 KB
最終ジャッジ日時 2024-09-17 09:26:08
合計ジャッジ時間 16,739 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 810 ms
91,992 KB
testcase_01 AC 806 ms
91,648 KB
testcase_02 AC 810 ms
91,968 KB
testcase_03 AC 803 ms
91,908 KB
testcase_04 AC 804 ms
91,980 KB
testcase_05 AC 808 ms
91,960 KB
testcase_06 AC 817 ms
91,860 KB
testcase_07 AC 799 ms
91,944 KB
testcase_08 AC 800 ms
92,260 KB
testcase_09 AC 809 ms
91,944 KB
testcase_10 AC 807 ms
91,740 KB
testcase_11 AC 807 ms
91,872 KB
testcase_12 AC 798 ms
91,996 KB
testcase_13 AC 807 ms
91,848 KB
testcase_14 AC 808 ms
92,208 KB
testcase_15 AC 807 ms
91,892 KB
testcase_16 AC 496 ms
92,076 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

M = 2000001;
m = 10**9+7 ;
p = int(input())
b = [0]*M
b[4] = 1
for i in range(5,M) : 
    b[i]=(2*p*b[i-1]+(2-p*p)*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