Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
17473 lixianyuan 数字反转 Python3 通过 20 MS 3648 KB 123 2023-01-10 16:21:28

Tests(10/10):


N=int(input()) if N>=0: print(int(str(N)[::-1])) else: n=str(N)[1:] n=str(N)[0]+n[::-1] print(int(n))


测评信息: