#include using namespace std; int main() { int n,m,x,y; cin>>n>>x>>y; if(y%x!=0) { m=n-y/x-1; } else m=y/x; cout<<m<<endl; return 0; }
使用您的 aoj 通用账户