Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
90579 | 余睿毅 | 04四位数移位 | Python3 | Wrong Answer | 35 MS | 3756 KB | 94 | 2024-09-15 19:57:25 |
a=input() b=int(a) c=(b%10) d=(b//10%10) e=(b//100%10) f=(b//1000) print(c,d,e,f,sep="")
------Input------
6234
------Answer-----
4623
------Your output-----
4326