Run ID:89666

提交时间:2024-08-28 13:52:14

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