题解
2024-08-05 20:18:39
发布于:浙江
4阅读
0回复
0点赞
#include<bits/stdc++.h>
using namespace std;
int main(){
int n,x,y;
cin>>n>>x>>y;
if (y%x==0){//时间相同
if (n-y/x<=0){ //吃完苹果
cout<<0;//输出没有苹果
}
else{//否则
cout<<n-y/x; //没吃完,int直接向下取整
}
}
else{//时间不同
if (n-(y/x+1)<=0){
cout<<0;
}
else{
cout<<n-(y/x+1); //没吃完,+1
}
}
return 0;//结束
}
这里空空如也
有帮助,赞一个