| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 36758 | 张瀚文 | 2023经开区信息技术合格性考试-1 | Python3 | Compile Error | 0 | 0 MS | 0 KB | 236 | 2024-01-04 14:52:48 |
a=int(input()) b=0.6*a c=0.7*a d=0.8*a e=("%.1f"%b)#% f=("%.1f"%c)#% g=("%.1f"%d)#% h=("%.1f"%a)#% if a>=4000: print(e) else: if a>=3000: print(f) else: if a>=2000: print(g) else: print(h)