Run ID:109524
提交时间:2025-02-09 14:02:28
#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"; return 0; } cout<<z; }