Run ID:109523
提交时间:2025-02-09 13:59:44
#include<bits/stdc++.h> using namespace std; int main(){ int n,x,y,z; cin>>n>>x>>y; z=n-y/x; if(y%z!=0){ z-=1; } if(y/x<=n){ cout<<"0"; } cout<<z; return 0; }