CP003000.苹果和虫子
2023-11-26 11:04:10
发布于:江苏
9阅读
0回复
0点赞
#include<iostream>
using namespace std;
int main() {
int n,x,y,ans=0;
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;
}
这里空空如也
有帮助,赞一个