提交时间:2025-03-24 17:34:34

运行 ID: 63267

#include<iostream> using namespace std; int main() { int n,x,y,mun=0; cin>>n>>x>>y; mun=y/x; if(y%x==0){ cout<<n-mun; } else if(y%x!=0){ mun++; cout<<n-mun; } return 0; }