9
2025-09-26 17:34:08
发布于:浙江
14阅读
0回复
0点赞
#include<bits/stdc++.h>
using namespace std;
int main(){
int n,x,y;
cin>>n>>x>>y;
if(y0)
{
cout<<0;
}
else if(y/x>=n)
{
cout<<0;
}
else if(y%x0)
{
cout<<n-(y/x);
}
else if(y%x!=0)
{
cout<<n-(y/x+1);
}
return 0;
}
这里空空如也







有帮助,赞一个