結果
問題 | No.1700 floor X |
ユーザー |
|
提出日時 | 2021-11-24 22:54:10 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 24 ms / 2,000 ms |
コード長 | 998 bytes |
コンパイル時間 | 1,586 ms |
コンパイル使用メモリ | 165,344 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-03 10:50:05 |
合計ジャッジ時間 | 3,762 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 |
other | AC * 44 |
ソースコード
#include<bits/stdc++.h>#define rep(i,n) for(int i=0;i<(n);++i)#define reps(i,n) for(int i=1;i<=(n);++i)#define repr(i,n) for(int i=2;i*i<=(n);++i)#define ll long long#define all(x) (x).begin(),(x).end()#define sz(x) ((string)(x).size())#define pb push_back#define pob pop_back()#define MMod (ll)1000000007#define mmod (ll)998244353#define setp(x) setprecision((ll)(x))#define INF (ll)(1000000000000000000)using namespace std;using vi=vector<int>;using vc=vector<char>;using vb=vector<bool>;using vl=vector<long long>;using vvi=vector<vi>;using vvl=vector<vl>;using vvc=vector<vc>;using vvb=vector<vb>;using vpi=vector<pair<int,int>>;using vpl=vector<pair<ll,ll>>;using vs=vector<string>;using pii=pair<int, int>;using pll=pair<ll,ll>;using pqi=priority_queue<int>;int main(){int n; cin>>n;rep(i,n){ll x; cin>>x;ll ng=1e9+1,ok=0;while(ng-ok>1){ll p=(ok+ng)/2;if(p*p>x) ng=p;else ok=p;}cout<<ok<<endl;}return 0;}