| Run ID |
作者 |
问题 |
语言 |
测评结果 |
Time |
Memory |
代码长度 |
提交时间 |
| 132206 |
杨嘉陆 |
04四位数移位 |
Python3 |
Wrong Answer |
54 MS |
3760 KB |
55 |
2025-10-07 13:11:12 |
Tests(5/8):
Code:
a=int(input())
m=a//10
n=a%10
a=1000*n+m
print(a)
Run Info:
------Input------
7980
------Answer-----
0798
------Your output-----
798