| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 5371 | 孙文谦 | 超市卖电池 | C++ | Accepted | 100 | 0 MS | 252 KB | 170 | 2020-07-31 19:40:21 |
#include<bits/stdc++.h> using namespace std; int main(){ double m; cin>>m; if(m<=10) printf("%.1lf",2*m); else if(m>10) printf("%.1lf",m*0.9*2); return 0; }