| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 39605 | 23王桂馨 | 2023经开区信息技术合格性考试-1 | Python3 | Accepted | 100 | 50 MS | 4488 KB | 206 | 2024-03-26 15:44:34 |
n=int(input()) if 2000<=n<3000: m=0.8*n print("%.1f" % m) if 3000<=n<4000: a=0.7*n print("%.1f" % a) if 4000<=n: b=0.6*n print("%.1f" % b) if n<2000: print("%.1f" % n)