| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 132210 | 江屹山 | 04倒序输出五位数 | Python3 | Wrong Answer | 51 MS | 3752 KB | 114 | 2025-10-07 13:20:01 |
x=int(input()) a=x//10000 b=x//1000%10 c=x//100%10 d=x//10%10 e=x%10 f=e*10000+d*1000+c*100+b*10+a print(f)
------Input------
15350
------Answer-----
05351
------Your output-----
5351