Run ID:126433
提交时间:2025-07-18 17:27:48
#include<bits/stdc++.h> using namespace std; int main() { int n,x,y,e,a; scanf("%d %d %d",&n,&x,&y); a = y%x; e = n-(y/x+a); if(e<=0){ cout<<"0"<<endl; } else{ cout<<e<<endl; } return 0; }