Run ID:88651

提交时间:2024-08-19 16:57:52

n ,x,y= input().split() n,x,y= int(n),int(x),int(y) res = n-y//x if y%x==0 else n-y//x -1 if res<0: res = 0 print(res)