Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
132328 胡皓宇 04倒序输出五位数 Python3 Accepted 67 MS 3760 KB 189 2025-10-08 08:35:29

Tests(10/10):


Code:

n = int(input()) a = str(n//10000) #万 b = str(n//1000%10) #千 c = str(n//100%100%10) #百 d = str(n//10%10) #十 e = str(n%10) #个 print(e+d+c+b+a)