結果

問題 No.1700 floor X
ユーザー tabae326tabae326
提出日時 2021-10-08 21:52:11
言語 C++17
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 18 ms / 2,000 ms
コード長 1,232 bytes
コンパイル時間 2,020 ms
コンパイル使用メモリ 197,412 KB
実行使用メモリ 4,504 KB
最終ジャッジ日時 2023-09-16 08:56:18
合計ジャッジ時間 4,391 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,380 KB
testcase_01 AC 16 ms
4,376 KB
testcase_02 AC 16 ms
4,384 KB
testcase_03 AC 16 ms
4,376 KB
testcase_04 AC 16 ms
4,376 KB
testcase_05 AC 16 ms
4,380 KB
testcase_06 AC 16 ms
4,380 KB
testcase_07 AC 16 ms
4,376 KB
testcase_08 AC 16 ms
4,376 KB
testcase_09 AC 16 ms
4,384 KB
testcase_10 AC 16 ms
4,376 KB
testcase_11 AC 17 ms
4,380 KB
testcase_12 AC 16 ms
4,380 KB
testcase_13 AC 16 ms
4,376 KB
testcase_14 AC 16 ms
4,376 KB
testcase_15 AC 16 ms
4,380 KB
testcase_16 AC 16 ms
4,380 KB
testcase_17 AC 16 ms
4,376 KB
testcase_18 AC 16 ms
4,384 KB
testcase_19 AC 16 ms
4,380 KB
testcase_20 AC 16 ms
4,376 KB
testcase_21 AC 18 ms
4,380 KB
testcase_22 AC 18 ms
4,380 KB
testcase_23 AC 17 ms
4,384 KB
testcase_24 AC 17 ms
4,380 KB
testcase_25 AC 17 ms
4,504 KB
testcase_26 AC 17 ms
4,376 KB
testcase_27 AC 17 ms
4,384 KB
testcase_28 AC 17 ms
4,380 KB
testcase_29 AC 17 ms
4,376 KB
testcase_30 AC 17 ms
4,376 KB
testcase_31 AC 18 ms
4,380 KB
testcase_32 AC 17 ms
4,380 KB
testcase_33 AC 17 ms
4,380 KB
testcase_34 AC 18 ms
4,380 KB
testcase_35 AC 17 ms
4,384 KB
testcase_36 AC 17 ms
4,380 KB
testcase_37 AC 17 ms
4,380 KB
testcase_38 AC 18 ms
4,380 KB
testcase_39 AC 18 ms
4,376 KB
testcase_40 AC 17 ms
4,380 KB
testcase_41 AC 17 ms
4,380 KB
testcase_42 AC 2 ms
4,376 KB
testcase_43 AC 17 ms
4,376 KB
testcase_44 AC 17 ms
4,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
#define rep(i, srt, end) for (long long i = (srt); i < (long long)(end); i++)
// Ref: https://qiita.com/ysuzuki19/items/d89057d65284ba1a16ac
#define dump(var)  do{std::cerr << #var << " : ";view(var);}while(0)
template<typename T> void view(T e){std::cerr << e << "\n";}
template<typename T> void view(const std::vector<T>& v){for(const auto& e : v){ std::cerr << e << " "; } std::cerr << "\n";}
template<typename T> void view(const std::vector<std::vector<T> >& vv){ std::cerr << "\n"; for(const auto& v : vv){ view(v); } }
template<typename T> void dump_cout(const T& v) { for(long long i = 0; i < v.size(); i++) std::cout << v[i] << (i == v.size()-1 ? "\n" : " "); }

// return maximum x such that x^2 <= n
// requirements: n <= 4e18 
long long isqrt(long long n) {
    long long res;
    long long l = 0, r = 2000000001;
    while(r - l > 1) {
        long long m = l + (r - l) / 2;
        if(m * m <= n) l = m;
        else r = m;
    }
    return l;
}

void solve() {
    ll n;
    cin >> n;
    cout << isqrt(n) << endl;
}

int main() {
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    ll t;
    cin >> t;
    while(t--) solve();
    return 0;
}
0