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

Tests(2/2):


Code:

def pinfanggen(n): a=n**0.5 return int(a) if a.is_integer() else a n=float(input()) print(pinfanggen(n))