| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 39566 | 23邹乐萌 | 2023经开区信息技术合格性考试-1 | Python3 | Wrong Answer | 37 | 46 MS | 4472 KB | 167 | 2024-03-26 15:29:26 |
n=int(input()) if 2000>n: ans=float(n) if 2000<=n<3000: ans=float(0.8*n) if 3000<=n<4000: ans=float(0.7*n) if 4000<=n: ans=float(0.6*n) print(ans)