| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 50594 | 嵇锟 | 2023经开区信息技术合格性考试-1 | Python3 | Accepted | 100 | 46 MS | 4460 KB | 212 | 2024-12-24 15:25:49 |
money = float(input()) if money >= 4000: result = money * 0.6 elif money >= 3000: result = money * 0.7 elif money >= 2000: result = money * 0.8 else: result = money print("%.1f" % result)