Run ID:144384

提交时间:2026-01-21 22:29:14

n,x,y=input().split() n=int(n) x=int(x) y=int(y) while y>=0: if y>0: n=n-1 y=y-x else: n=n print(n)