Run ID:114830

提交时间:2025-03-23 16:27:12

#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(a>=d){ cout<<a-d; } else{ cout<<0; } return 0; }