| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 36691 | Gapple | 2023经开区信息技术合格性考试-1 | Python3 | Wrong Answer | 12 | 40 MS | 4464 KB | 175 | 2023-12-28 18:42:37 |
x = int(input()) if x >= 4000: print(f"{x * 0.6:.1f}") elif x >= 3000: print(f"{x * 0.7:.1f}") elif x >= 2000: print(f"{x * 0.8:.1f}") else: print(x)