Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
90897 胡玄善 06变换四位数 Python3 Accepted 41 MS 3788 KB 142 2024-09-19 19:23:32

Tests(10/10):


Code:

s=int(input()) a=s%10 b=int(s/10)%10 c=int(s/100)%10 d=int(s/1000)%10 if c==0: print(d,a,b,sep="") else: print(c,d,a,b,sep="")