Run ID:133326
提交时间:2025-10-18 14:47:59
#include<bits/stdc++.h> using namespace std; int main(){ int n,x,y,d,e; cin>>n>>x>>y; d = n-y/x; if(y%x>0){ e = d-1; cout<<e<<endl; } else{ cout<<d<<endl; } return 0; }