Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
91768 | 徐梓涵 | 06变换四位数 | Python3 | Wrong Answer | 33 MS | 3760 KB | 103 | 2024-09-22 14:43:48 |
s=int(input()) a=s//10%10 b=s//1000%10 c=s//100%10 d=s%10 print(str(c)+str(b)+str(d)+str(a))
------Input------
8051
------Answer-----
815
------Your output-----
0815