Run ID:126412
提交时间:2025-07-18 16:45:35
#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 - a <0) { cout << 0; } else { cout << n - a; } return 0; }