짱해커가 되어보자

boj 9366 본문

프로그래밍_일반/백준

boj 9366

Spadework 2020. 2. 12. 23:51

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

def cc(l): return 1 if l[2] < l[1]+l[0] else 0
for i in range(int(input())):
	a,b,c = map(int, input().split())
	print('Case #{}: {}'.format(i+1, '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'))

* 5073번과 거의 똑같다

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

boj 4388  (0) 2020.02.13
boj 11772  (0) 2020.02.13
boj 17173  (0) 2020.02.12
boj 18247  (0) 2020.02.11
boj 5666  (0) 2020.02.11
Comments