Run ID:152813
提交时间:2026-05-02 15:39:32
#include<bits/stdc++.h> using namespace std; int main(){ int n,x,y; cin>>n>>x>>y; if(y/x>n){ cout<<0; }else{ cout<<((y%x==0) ?n-y/x:n-y/x-1); } return 0; }