| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 50505 | 杨骐恺 | 2023经开区信息技术合格性考试-1 | Python3 | Accepted | 100 | 43 MS | 4464 KB | 253 | 2024-12-24 15:00:06 |
money = int(input()) if money >= 4000: total_payment = money * 0.6 elif money >= 3000: total_payment = money * 0.7 elif money >= 2000: total_payment = money * 0.8 else: total_payment = money print(f'{total_payment:.1f}')