Run ID:93319
提交时间:2024-10-13 11:04:36
q=input().split() x=q[0] a=q[1] b=q[2] c=q[3] d=q[4] a=float(a) b=float(b) c=float(c) d=float(d) x=float(x) #f(x)=a*x^3+b*x^2+c*x+d保 p=a*x*x*x+b*x*x+c*x+d p="{:.5f}".format(p) print(p)