| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 77806 | sh25_wuyy | 计算书费 | C++ | Accepted | 0 MS | 260 KB | 304 | 2025-12-26 14:50:23 |
#include <iostream> #include <iomanip> using namespace std; int main() { int a,b,c,d,e,f,g,h,i,j; double money; cin>>a>>b>>c>>d>>e>>f>>g>>h>>i>>j; money=a*28.9+b*32.7+c*45.6+d*78+e*35+f*86.2+g*27.8+h*43+i*56+j*65; cout<<fixed<<setprecision(1)<<money; return 0; }