3431. 준환이의 운동관리 (SWEA)
※ SW Expert 아카데미의 문제를 무단 복제하는 것을 금지합니다.
출처:
나의 풀이
1
2
3
4
5
6
7
8
9
10
11
T = int(input())
for test_case in range(1, T + 1):
L,U,X=map(int,input().split())
if X>U:
ans=-1
elif X<L:
ans=L-X
else:
ans=0
print(f'#{test_case} {ans}')
This post is licensed under CC BY 4.0 by the author.