Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
85229 汤弘毅 简单的分支结构 Python3 Accepted 35 MS 3744 KB 67 2024-07-16 19:26:05

Tests(1/1):


Code:

x = int(input()) if x == 0: print('0') else: print(x//abs(x))