| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 5621 | 欧阳漌 | 糖果店 | C++ | Wrong Answer | 0 | 0 MS | 256 KB | 200 | 2020-08-14 16:24:32 |
#include<bits/stdc++.h> using namespace std; int main(){ int a,b,c; double p1,p2,p3; cin>>a>>b>>c; p1=10.4*a; p2=15.6*b; p3=25.2*c; printf("%.1lf %.1lf %.1lf",p1,p2,p3); return 0; }