結果

問題 No.2420 Simple Problem
ユーザー bortikbortik
提出日時 2023-08-16 05:17:34
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 96 ms / 2,000 ms
コード長 785 bytes
コンパイル時間 2,176 ms
コンパイル使用メモリ 199,800 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-05-03 14:32:23
合計ジャッジ時間 8,843 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 39 ms
6,940 KB
testcase_02 AC 3 ms
6,940 KB
testcase_03 AC 16 ms
6,944 KB
testcase_04 AC 76 ms
6,940 KB
testcase_05 AC 50 ms
6,940 KB
testcase_06 AC 96 ms
6,940 KB
testcase_07 AC 96 ms
6,944 KB
testcase_08 AC 92 ms
6,944 KB
testcase_09 AC 94 ms
6,940 KB
testcase_10 AC 96 ms
6,944 KB
testcase_11 AC 94 ms
6,940 KB
testcase_12 AC 95 ms
6,940 KB
testcase_13 AC 93 ms
6,944 KB
testcase_14 AC 93 ms
6,940 KB
testcase_15 AC 93 ms
6,940 KB
testcase_16 AC 93 ms
6,940 KB
testcase_17 AC 93 ms
6,944 KB
testcase_18 AC 94 ms
6,940 KB
testcase_19 AC 94 ms
6,944 KB
testcase_20 AC 92 ms
6,940 KB
testcase_21 AC 93 ms
6,944 KB
testcase_22 AC 92 ms
6,944 KB
testcase_23 AC 93 ms
6,940 KB
testcase_24 AC 95 ms
6,940 KB
testcase_25 AC 92 ms
6,940 KB
testcase_26 AC 2 ms
6,940 KB
testcase_27 AC 73 ms
6,944 KB
testcase_28 AC 75 ms
6,940 KB
testcase_29 AC 75 ms
6,944 KB
testcase_30 AC 74 ms
6,940 KB
testcase_31 AC 75 ms
6,940 KB
testcase_32 AC 1 ms
6,940 KB
testcase_33 AC 38 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

#define ll long long
#define rep(i, a, n) for (int i = (int)(a); i < (int)(n); i++)
#define rrep(i, n, a) for (int i = (int)(n); i >= (int)(a); i--)

void solve(){
    int n; cin >> n;
    rep(i,0,n){
        int low = 1;
        int high = 70000;
        ll a,b; cin >> a >> b;
        low = sqrt(a+b)-1;
        while(high - low > 0){
            ll mid = (low+high)/2;
            ll val = (mid*mid-(a+b))*(mid*mid-(a+b));
            ll val2 = (mid*mid-(a+b));
            if(val > 4*a*b && val2 > 0){
                high = mid;
            } else {
                low = mid+1;
            }
        }
        cout << low << '\n';
    }
}

int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    solve();

    return 0;
}
0