Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
144264 夏宇航 11判断三角形 Python3 Wrong Answer 30 MS 3772 KB 319 2026-01-20 21:22:58

Tests(0/10):


Code:

a,b,c=map(int,input().split()) if a+b<c and b+c<a and c+a<b: print('NO') elif a**2+b**2==c**2 or b**2+c**2==a**2 or c**2+a**2==b**2: print('Isosceles Triangle') elif a==b==c: print('Equilateral Triangle') elif a==b or a==c or b==c: print('Isosceles Triangle') else: print('Simpe Triangle')


Run Info:

------Input------
12 19 20
------Answer-----
Simple Triangle
------Your output-----
Simpe Triangle