300.苹果和虫子
2023-03-26 11:01:27
发布于:江苏
46阅读
0回复
0点赞
#include <bits/stdc++.h>
using namespace std;
int main() {
int n,x,y,ans;
cin >> n >> x >> y;
if(y%x!=0) {
ans= n-(y/x+1);
} else {
ans= n-y/x;
}
if(ans>0) {
cout << ans;
} else {
cout << 0;
}
return 0;
}
这里空空如也
有帮助,赞一个