Run ID:3895

提交时间:2024-07-18 15:29:21

# include<iostream> using namespace std; int main(){ int n,m,x,y; cin>>n>>x>>y; m=y/x; if(y%x!=0) m+=1;//第m+1个苹果被吃着 cout<<n-m<<endl; return 0; }