| Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|---|
| 46863 | 徐梁宸 | 2023经开区信息技术合格性考试-1 | Python3 | 编译错误 | 0 | 0 MS | 0 KB | 210 | 2024-10-15 16:13:42 |
n = float(input()) if n<2000: print(round(n,1)) elif n >= 2000 and n < 3000: print(round(0.8n,1)) elif n >= 3000 and n < 4000: print(round(0.7n,1)) elif n >= 4000: print(round(0.6n,1))