Run ID:2736

提交时间:2024-01-21 09:43:06

# include<iostream> using namespace std; int main(){ int n,x,y; scanf("%d%d%d",&n,&x,&y); if(y%x != 0){ cout<<n-(y/x+1)<<endl; } if(y%x == 0){ cout<<n-y/x<<endl; } return 0; }