竞赛
考级
#include<iostream> using namespace std; int main(){ int n; int x; int y; cin>>n>>x>>y; if(y%x!=0){ cout<<n-y/x-1; } else{ if(n-y/x<=0){ cout<<"0"; } else{ cout<<n-y/x;} } return 0; }
醉词意
想加的点下面链接 笑点一高
shift
小ZUZU_童瑞琪专属奴隶
#include<iostream> using namespace std; int main(){ int n; int x; int y; cin>>n>>x>>y; if(y%x!=0){ cout<<n-y/x-1; }else{ if(n-y/x<=0){ cout<<"0"; }else{ cout<<n-y/x;} } return 0; }
LELECHA
#include <iostream> using namespace std; int main() { int n,x,y; cin>>n>>x>>y; if(y%x==0){ if(n-y/x>=0){ cout<<n-y/x; } else{ cout<<0; } }
cz宇林(^-^)
「欢愉」花火
王子豪
Eren.
#include<bits/stdc++.h> using namespace std; int m,t,s; int main() { cin>>m>>t>>s; if(t0) { cout<<0; return 0; } if(s%t0) cout<<max(m-s/t,0); else cout<<max(m-s/t-1,0); return 0; }
风中雪zLyXj
#include <iostream> using namespace std; int main(){ int n,x,y,a; cin >> n >> x >> y; //(y%x == 0)?a = y/x:a = y/x+1; if (x >= 0 && x <= 99999 && n >= 0 && n <= 99999 && y >= 0 && y <= 99999) { a = y/x; if (y%x != 0) a++; }
shao
#include <iostream> using namespace std; int main(){ int n,x,y; cin>>n>>x>>y; if(y%x!=0){ cout<<n-y/x-1; }else if(n-y/x<=0){ cout<<"0"; }else{ cout<<n-y/x; } return 0; }
150****9508
耐高总冠军 张文杰
#include <bits/stdc++.h> using namespace std; int main(){ int n,x,y; cin>>n>>x>>y; int ans = n - ceil(y*1.0/x); if (ans<0) ans = 0; cout << ans; return 0; }
~
卢督庭
私密马赛
共35条