Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
110884 | 苏星睿 | 04四位数移位 | Python3 | Wrong Answer | 36 MS | 3772 KB | 84 | 2025-02-23 16:56:03 |
s = int(input()) a = s//1000 b = s//100%10 c = s//10%10 d = s%10 print(d,a,b,c)
------Input------
6234
------Answer-----
4623
------Your output-----
4 6 2 3