[Python] BOJ 4153번. 직각삼각형

4153번. 직각삼각형

문제 링크

풀이 코드

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# 4153번. 직각삼각형

while True:
    nList = list(map(int, input().split()))
    nList.sort()
    if nList[0] == 0:
        break
    else:
        a = nList[0]**2
        b = nList[1]**2
        c = nList[2]**2
        if c == a+b:
            print('right')
        else:
            print('wrong')

비고