提交时间:2020-07-28 15:53:44

运行 ID: 5227

#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; else ans=n-y/x-1; cout<<ans; return 0; }