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