提交时间:2022-10-06 08:44:58

运行 ID: 11520

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