Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
90896 | 胡玄善 | 06变换四位数 | Python3 | Wrong Answer | 33 MS | 3752 KB | 96 | 2024-09-19 19:14:53 |
s=int(input()) a=s%10 b=int(s/10)%10 c=int(s/100)%10 d=int(s/1000)%10 print(c,d,a,b,sep="")
------Input------
8051
------Answer-----
815
------Your output-----
0815