Run ID:147213

提交时间:2026-02-03 16:19:29

#include<bits/stdc++.h> using namespace std; int n,x,y; int main(){ cin>>n>>x>>y; if(n-y/x<0) cout<<0; else{if(y%x>0) cout<<n-y/x-1; else cout<<n-y/x; } return 0; }