| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 313975 | 徐梓豪 | 【C1-7】包裹托运 | C++ | Wrong Answer | 0 | 1 MS | 240 KB | 162 | 2025-03-23 16:45:31 |
#include<iostream> using namespace std; int main(){ float x; cin>>x; if (x<=15) cout<<"x*6"; else cout<<"15*6+(x-15)*9"; return 0; }