Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|---|
856 | A班-黎祖彦 | 行李托运费-2 | C++ | Wrong Answer | 0 | 0 MS | 260 KB | 152 | 2024-11-30 10:51:19 |
#include<bits/stdc++.h> using namespace std; int main(){ int x; cin>>x; if(x>=20) { cout<<1.98*x; } else { cout<<1.68*x; } }