| Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|---|
| 56323 | 章帅 | 2023经开区信息技术合格性考试-1 | Python3 | 通过 | 100 | 55 MS | 4468 KB | 247 | 2025-03-27 16:15:01 |
amount = int(input()) if amount >= 4000: discount = 0.6 elif amount >= 3000: discount = 0.7 elif amount >= 2000: discount = 0.8 else: discount = 1.0 actual_amount = amount * discount print("{0:.1f}".format(actual_amount))