| Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|---|
| 58038 | 范宇浩 | 2023经开区信息技术合格性考试-1 | Python3 | 通过 | 100 | 51 MS | 4480 KB | 226 | 2025-07-03 14:45:59 |
amount = int(input().strip()) if amount >= 4000: result = amount * 0.6 elif amount >= 3000: result = amount * 0.7 elif amount >= 2000: result = amount * 0.8 else: result = amount print(f"{result:.1f}")