| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 50457 | 宋符睿 | 2023经开区信息技术合格性考试-1 | Python3 | Wrong Answer | 12 | 42 MS | 4460 KB | 237 | 2024-12-24 14:43:40 |
a=int(input()) if a>=4000: b=a*0.6 b=float("%.1f" % b) print(b) elif a>=3000: b=a*0.7 b=float("%.1f" % b) print(b) elif a>=2000: b=a*0.8 b=float("%.1f" % b) print(b) else : print(a)