Run ID:137186
提交时间:2025-11-16 15:24:05
#include <iostream> using namespace std; int main() { int n,x,y; cin >> n >> x >> y; if(y%x == 0) { n = n-(y/x); }else { n = n-(y/x) -1; } cout << n << endl; }