| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 39621 | 23吴宛泽 | 2023经开区信息技术合格性考试-1 | Python3 | Accepted | 100 | 48 MS | 4472 KB | 146 | 2024-03-26 15:51:03 |
a=int(input()) if 3000>a>=2000: t=a*0.8 if 4000>a>=3000: t=a*0.7 if a>=4000: t=a*0.6 if a<2000: t=a*1 print("%.1f" % t)