Run ID:141739

提交时间:2025-12-28 14:48:38

n,x,y = input().split() n = int(n) #total number of apples x = int(x) #eating apple speed y = int(y) #total hours #input #process eatenApples = y//x #the worm ate completed apples if y%x >0: eatenApples +=1 #the worm ate an incompleted apple leftApples = n - eatenApples #output if leftApples>=0: print( leftApples) else: print( 0)