| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 1425 | 顾郁铭 | 行李托运 | C++ | Accepted | 100 | 0 MS | 252 KB | 138 | 2019-10-08 21:00:08 |
#include<iostream> int main(){ double a,b; scanf("%lf",&a); b=a*2.5; if(a>10) b=b+(a-10)*1.5; printf("%.1lf",b); return 0; }