| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 313977 | 徐梓豪 | 【C1-7】包裹托运 | C++ | Accepted | 100 | 1 MS | 248 KB | 162 | 2025-03-23 16:46:50 |
#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; }