Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
90901 | 胡玄善 | 06计算f(x)的值 | Python3 | Wrong Answer | 38 MS | 3760 KB | 134 | 2024-09-19 20:41:28 |
s=input().split() x=float(s[0]) a=int(s[1]) b=int(s[2]) c=int(s[3]) d=int(s[4]) x="{:.5f}".format(a*x*x*x+b*x*x+c*x+d) print(x)
------Input------
1.5 3.1 1.6 8.2 9.4
------Answer-----
35.76250
------Your output-----