본문 바로가기

Python/code problem

[sw expert academy] 3431. 준환이의 운동관리

https://swexpertacademy.com/main/main.do

 

SW Expert Academy

SW 프로그래밍 역량 강화에 도움이 되는 다양한 학습 컨텐츠를 확인하세요!

swexpertacademy.com

Lv3 첫 문제다!

 

T = int(input())
for t in range(1,T+1):
    L,U,X = map(int,input().split())
    result = 0
    if X <=L:
        result = L -X
    elif L< X <=U:
        result = 0
    elif U<X:
        result = -1
    print("#{} {}".format(t,result))