提交时间:2024-11-16 11:38:11

运行 ID: 147

#include <bits/stdc++.h> using namespace std; int main() { int n,x,y; cin>>n>>x>>y; int c = y / x; int d = y % x; cout<<n - (c + d)<<endl; return 0; }