| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 69807 | sh25_wuyy | 计算多项式的值 | C++ | Accepted | 0 MS | 248 KB | 198 | 2025-10-11 17:35:10 |
#include<bits/stdc++.h> using namespace std; int main(){ double x,a,b,c,d; cin>>x>>a>>b>>c>>d; double result=a*x*x*x+b*x*x+c*x+d; cout<<fixed<<setprecision(7)<<result<<endl; return 0; }