| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 5641 | yusuorong | 糖果店 | C++ | Wrong Answer | 20 | 0 MS | 252 KB | 179 | 2020-08-14 16:38:27 |
#include<bits/stdc++.h> using namespace std; int main(){ double s=10.4,n=15.6,g=25.2,ans; int a,b,c; cin>>a>>b>>c; ans=a*s+b*n+c*g; printf("%.1lf",ans); return 0; }