Run ID:105938
提交时间:2025-01-14 23:06:31
#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 += 1; } int b = n - a; cout << b << std::endl; return 0; }