Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
91243 | 石水生 | 06计算f(x)的值 | C++ | Accepted | 1 MS | 272 KB | 142 | 2024-09-21 14:10:16 |
#include <bits/stdc++.h> using namespace std; int main(){ double a,b,c,d,e; cin>>a>>b>>c>>d>>e; printf("%.5f",b*a*a*a+c*a*a+d*a+e); }