Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|
37289 | 奚晨瑞 | 计算多项式的值 | C++ | Wrong Answer | 1 MS | 252 KB | 150 | 2024-01-19 20:06:07 |
#include<iostream> using namespace std; int main() { double x,a,b,c,d; cin>>x>>a>>b>>c>>d; printf("%.7f",x*x*x*a+x*x*b+x*c+d); return 0; }