| Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|---|
| 8613 | ElaineTang | 计算多项式的值 | C++ | 通过 | 100 | 1 MS | 264 KB | 162 | 2025-03-31 20:28:09 |
#include<bits/stdc++.h> using namespace std; int main(){ double a,b,c,d,x; cin>>x>>a>>b>>c>>d; cout<<setprecision(7)<<fixed<<a*x*x*x+b*x*x+c*x+d; }