백준 4153번: 직각삼각형

용상윤·2021년 3월 27일
0
post-custom-banner

문제

https://www.acmicpc.net/problem/4153


접근

sorted(문자열) 은 리스트로 반환된다.


python

내 코드

import sys
input = sys.stdin.readline

while(True) :
    nums = sorted(map(int, input().split()))

    if(max(nums) == 0) :
        break    

    print("right") if nums[0]**2 + nums[1]**2 == nums[2]**2 else print("wrong")

        
profile
달리는 중!

0개의 댓글