| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 144449 | Kevin | 【基础题】行李托运费 | C++ | Accepted | 1 MS | 272 KB | 163 | 2026-01-22 19:43:04 |
#include<bits/stdc++.h> using namespace std; int main() { double n; cin>>n; if(n>20) printf("%.2lf",n*1.98); else printf("%.2lf",n*1.68); return 0; }