Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
132337 赵乘浩 04倒序输出五位数 Python3 Accepted 61 MS 3768 KB 132 2025-10-08 08:55:39

Tests(10/10):


Code:

n=int(input()) a=n//10000 b=n//1000%10 c=n//100%10 d=n//10%10 e=n%10 # print(a,b,c,d,e) print("{}{}{}{}{}".format(e,d,c,b,a))