Run ID:98133
提交时间:2024-11-17 14:09:11
#include<iostream> using namespace std; int main(){ int n,x,y; cin >> n >> x >> y; if(y%x == 0){ cout << n - x/y << endl; } else{ cout << n - x/y-1<<endl; } return 0; }