Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
132207 江屹山 06变换四位数 Python3 Accepted 57 MS 3764 KB 93 2025-10-07 13:14:56

Tests(10/10):


Code:

a=int(input()) b=a//1000 c=a//100%10 d=a//10%10 e=a%10 f=c*1000+b*100+e*10+d print(f)