Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
91461 | 谭景年 | 06计算f(x)的值 | Python3 | Wrong Answer | 38 MS | 3740 KB | 146 | 2024-09-21 20:18:35 |
s=input().split() c=float(s[2]) a=float(s[0]) b=float(s[1]) x=float(s[4]) d=float(s[3]) f=a*x*x*x+b*x*x+c*x+d print('{:.5f}'.format(f))
------Input------
1.5 3.1 1.6 8.2 9.4
------Answer-----
35.76250
------Your output-----
1543.03200