| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 872 | A班-黎祖彦 | 行李托运费-2 | C++ | Accepted | 100 | 1 MS | 260 KB | 199 | 2024-11-30 10:59:26 |
#include<bits/stdc++.h> using namespace std; int main(){ float x; cin>>x; if(x>20) { cout<<setprecision(2)<<fixed<<1.98*x; } else { cout<<setprecision(2)<<fixed<<1.68*x; } }