Run ID:132730
提交时间:2025-10-12 11:24:57
#include<iostream> using namespace std; int main(){ int y,n,x; cin>>n>>x>>y; if(y%x==0) { cout<<n-y/x; } else { cout<<n-y/x-1; } }