Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
87091 丁俊杰 求平方根 Python3 Accepted 37 MS 3740 KB 151 2024-08-03 17:34:39

Tests(2/2):


Code:

import math def pinfanggen(n): return int(math.sqrt(n))if math.sqrt(n).is_integer() else math.sqrt(n) n=float(input()) print(pinfanggen(n))