Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
92285 | 徐盛熠 | 06计算f(x)的值 | Python3 | Wrong Answer | 36 MS | 3752 KB | 186 | 2024-09-28 19:49:17 |
c=input().split() a=c[0] b=c[1] x=c[2] d=c[3] n=c[4] b=float(b) a=float(a) x=float(x) d=float(d) n=float(n) w=a*(x*x*x)+b*(x*x)+n*x+b w="{:.5f}".format(w) print(w)
------Input------
1.5 3.1 1.6 8.2 9.4
------Answer-----
35.76250
------Your output-----
32.22000