1181 - 求指数方程的根(fxroot) [2*+] **

通过次数

0

提交次数

0

Time Limit : 1 秒
Memory Limit : 128 MB

求指数方程的根(fxroot)
求方程f(x)=2^x+3^x-4^x=0 在[1,2]内的根。提示a^x可表示成exp(x*ln(a))或用math库中的power(a,x)。
输入:无输入
输出:f(x)=0的根,x精确到小数点10位
提示:记方程f(x)=0,若存在2个数x1和x2,且x1

Input

Output

Examples

Input


                            

Output


                            

Source

基础算法-分治