| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 50578 | 李嘉泽 | 2023经开区信息技术合格性考试-1 | Python3 | Accepted | 100 | 46 MS | 4472 KB | 233 | 2024-12-24 15:19:55 |
cost = int(input()) # 获取输入的花费金额 if cost >= 4000: result = cost * 0.6 elif cost >= 3000: result = cost * 0.7 elif cost >= 2000: result = cost * 0.8 else: result = cost print("%.1f" % result)