Run ID:133336

提交时间:2025-10-18 15:00:53

#include<bits/stdc++.h> using namespace std; int main(){ int a,b,c,d; cin>>a>>b>>c; if(c%b!=0){ d=c/b+1; } else{ d=c/b; } if(d>a){ cout<<0<<endl; } else{ cout<<a-d<<endl; } return 0; }