码迷,mamicode.com
首页 > 其他好文 > 详细

水题,模拟题,但仍需细心,多考虑

时间:2018-10-13 18:41:03      阅读:158      评论:0      收藏:0      [点我收藏+]

标签:ble   space   axis   iostream   style   math   else   name   int   

//http://codeforces.com/contest/1065/problem/B
#include <iostream> #include <cmath> using namespace std; int main() { long long n,m,num,s,a,b,c,minIS,maxIS; cin>>n>>m; if(n<2*m) { minIS=0; } else { minIS=n-2*m; } if(m==2) { maxIS=n-3; } else if(m==0) { maxIS=n; } else { maxIS=n-(1+(sqrt(1+8*m)))/2; } cout<<minIS<<" "<<maxIS<<endl; return 0; }

 

水题,模拟题,但仍需细心,多考虑

标签:ble   space   axis   iostream   style   math   else   name   int   

原文地址:https://www.cnblogs.com/LandingGuy/p/9783699.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!