Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
132229 叶航帅 04倒序输出五位数 Python3 Wrong Answer 52 MS 3740 KB 148 2025-10-07 13:46:08

Tests(0/10):


Code:

a = int(input()) b = a//10000 c = a%10000//1000 d = a%1000//100 e = a%100//10 f = a%10 ans = f*10000 + e*1000 + d*100 + c*10 + b*1 print(ans)


Run Info:

------Input------
15350
------Answer-----
05351
------Your output-----
5351