题解
2023-08-10 17:17:50
发布于:浙江
8阅读
0回复
0点赞
#include<bits/stdc++.h>
using namespace std;
int m,t,s;
int main()
{
cin>>m>>t>>s;
if(t==0)
{
cout<<0;
return 0;
}
if(s%t==0)
cout<<max(m-s/t,0);
else
cout<<max(m-s/t-1,0);
return 0;
}
注,它是完整的苹果,且m不能除0(t=0特判)
这里空空如也
有帮助,赞一个