Run ID:114545

提交时间:2025-03-22 16:39:35

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