题解
2025-12-05 15:59:01
发布于:浙江
1阅读
0回复
0点赞
#include<bits/stdc++.h>
using namespace std;
int main()
{
int n,x,y;
cin>>n;
cin>>x;
cin>>y;
if(y%x==0) cout<<n-y/x;
if(y%x!=0) cout<<n-y/x-1;
else if(y%x>=n)
return 0;
}
这里空空如也






有帮助,赞一个