Run ID:145672
提交时间:2026-01-25 17:58:13
#include <bits/stdc++.h> using namespace std; int main() { int n, x, y; cin >> n >> x >> y; int m = (y - 1) / x + 1; cout << (m >= n ? 0 : n - m) << endl; return 0; }