Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
132212 杨嘉陆 04四位数移位 Python3 Accepted 57 MS 3764 KB 103 2025-10-07 13:21:20

Tests(8/8):


Code:

a=int(input()) m=a//10 n=a%10 if n!=0: a=1000*n+m else: m=str(m) a="0"+m print(a)