Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
132329 赵乘浩 06变换四位数 Python3 Accepted 55 MS 3760 KB 90 2025-10-08 08:36:34

Tests(10/10):


Code:

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