| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 58038 | 范宇浩 | 2023经开区信息技术合格性考试-1 | Python3 | Accepted | 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}")