짱해커가 되어보자

boj 5073 본문

프로그래밍_일반/백준

boj 5073

Spadework 2020. 2. 8. 19:23

* Solved 기준 브론즈3 단순 풀이

def cc(l): return 1 if l[2] < l[1]+l[0] else 0
while True:
	a,b,c = map(int, input().split())
	if (a,b,c) == (0,0,0): break
	print('Invalid' if not cc(sorted([a,b,c])) else 'Equilateral' if a==b==c else 'Isosceles' if a==b or b==c or a==c else 'Scalene')

'프로그래밍_일반 > 백준' 카테고리의 다른 글

boj 15781  (0) 2020.02.08
boj 15780  (0) 2020.02.08
boj 2997  (0) 2020.02.08
boj 5523  (0) 2020.02.07
boj 14489  (0) 2020.02.07
Comments