hdu1337The Drunk Jailer

完完全全地一道水题,以后不做这种题目了,用十几行就可以解决的问题啊

#include "iostream"
#include "string.h"
using namespace std;
int main(){
  int ncase,n,i;
  cin>>ncase;
  while(ncase--){
    cin>>n;
    for(i=2;;i++){
      if((i+1)*(i+1)-1>=n){
        cout<<i<<endl;
        break;
      }
    }
  }
}

 

 

posted @ 2013-08-28 11:01  龙城星  阅读(104)  评论(0编辑  收藏  举报