Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
90200 周轩屹 06计算f(x)的值 Python3 Accepted 44 MS 3756 KB 147 2024-09-08 11:01:40

Tests(10/10):


Code:

s=input().split() x=float(s[0]) a=float(s[1]) b=float(s[2]) c=float(s[3]) d=float(s[4]) e=a*x*x*x+b*x*x+c*x+d e="{:.5f}".format(e) print(e)