짱해커가 되어보자

boj 7510 본문

프로그래밍_일반/백준

boj 7510

Spadework 2020. 2. 9. 15:08

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

for i in range(int(input())):
	l = sorted(map(int, input().split()))
	print('Scenario #{}:\n{}\n'.format(i+1, 'yes' if l[2]**2==l[1]**2+l[0]**2 else 'no'))

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

boj 1837  (0) 2020.02.10
boj 12833  (0) 2020.02.09
boj 5612  (0) 2020.02.09
boj 10834  (0) 2020.02.09
boj 4766  (0) 2020.02.08
Comments