Run ID:4919

提交时间:2024-10-05 19:40:15

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