Run ID:126411
提交时间:2025-07-18 16:42:59
#include <bits/stdc++.h> using namespace std; int main() { int n, x, y; cin >> n >> x >> y; int a = y / x; if (y % x != 0) { a = a + 1; } if (n -= 0) { cout << 0; } else { cout << n - a; } return 0; }