| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 144207 | 毛梦瑶 | 11判断三角形 | Python3 | Accepted | 31 MS | 3784 KB | 367 | 2026-01-20 17:39:02 |
a,b,c=input().split() a=int(a);b=int(b);c=int(c) if a+b>c and a+c>b and b+c>a: if a==b==c: print("Equilateral Triangle") elif a==b or b==c or a==c: print("Isosceles Triangle") elif a*a+b*b==c*c or b*b+c*c==a*a or a*a+c*c==b*b: print("Right Triangle") else: print("Simple Triangle") else: print("No")