짱해커가 되어보자

boj 6502 본문

프로그래밍_일반/백준

boj 6502

Spadework 2020. 3. 11. 09:07

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

i=0
while True:
	l = list(map(int, input().split())); i+=1
	if l==[0]: break
	print('Pizza {} {} on the table.'.format(i, 'fits' if (2*l[0])**2 >= l[1]**2+l[2]**2 else 'does not fit'))

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

boj 5524  (0) 2020.03.11
boj 9546  (0) 2020.03.11
boj 13304  (0) 2020.03.11
boj 2810  (0) 2020.03.09
boj 2399  (0) 2020.03.09
Comments