Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
87093 丁俊杰 求平方根 Python3 Accepted 35 MS 3740 KB 139 2024-08-03 21:05:56

Tests(2/2):


Code:

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