add: swea/3431.py
This commit is contained in:
11
swea/3431.py
Normal file
11
swea/3431.py
Normal file
@@ -0,0 +1,11 @@
|
||||
n=int(input())
|
||||
|
||||
for i in range(1,n+1):
|
||||
istr="#"+str(i)
|
||||
l,u,x=map(int,input().split())
|
||||
if u<x:
|
||||
print(istr,-1)
|
||||
elif l-1<x:
|
||||
print(istr,0)
|
||||
else:
|
||||
print(istr,(l-x))
|
||||
Reference in New Issue
Block a user