Online Judge
Toggle navigation
C++题库系统 OJ
首页
问题列表
状态
排行榜
登录
首页
状态
132335
Run ID
作者
问题
语言
测评结果
Time
Memory
代码长度
提交时间
132335
胡皓宇
04四位数移位
Python3
Accepted
75 MS
3760 KB
86
2025-10-08 08:46:46
Tests(8/8):
Code:
n = int(input()) a = str(n//10) #千百十 b = str(n%10) #个 print(b+a)