Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
93215 | 蔡宸轩 | 04四位数移位 | Python3 | Wrong Answer | 36 MS | 3756 KB | 96 | 2024-10-12 20:42:22 |
s=input() s=int(s) z=s%10 o=s//10%10 x=s//100%10 t=s//1000%10 print(z*1000+o*100+x*10+t*1)
------Input------
6234
------Answer-----
4623
------Your output-----
4326