結果

問題 No.2420 Simple Problem
ユーザー bortikbortik
提出日時 2023-08-16 05:17:34
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 107 ms / 2,000 ms
コード長 785 bytes
コンパイル時間 2,078 ms
コンパイル使用メモリ 200,184 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-24 15:19:22
合計ジャッジ時間 9,048 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 45 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 18 ms
5,248 KB
testcase_04 AC 84 ms
5,248 KB
testcase_05 AC 55 ms
5,248 KB
testcase_06 AC 105 ms
5,248 KB
testcase_07 AC 105 ms
5,248 KB
testcase_08 AC 106 ms
5,248 KB
testcase_09 AC 105 ms
5,248 KB
testcase_10 AC 105 ms
5,248 KB
testcase_11 AC 105 ms
5,248 KB
testcase_12 AC 105 ms
5,248 KB
testcase_13 AC 105 ms
5,248 KB
testcase_14 AC 104 ms
5,248 KB
testcase_15 AC 104 ms
5,248 KB
testcase_16 AC 105 ms
5,248 KB
testcase_17 AC 105 ms
5,248 KB
testcase_18 AC 106 ms
5,248 KB
testcase_19 AC 106 ms
5,248 KB
testcase_20 AC 107 ms
5,248 KB
testcase_21 AC 106 ms
5,248 KB
testcase_22 AC 105 ms
5,248 KB
testcase_23 AC 104 ms
5,248 KB
testcase_24 AC 106 ms
5,248 KB
testcase_25 AC 107 ms
5,248 KB
testcase_26 AC 2 ms
5,248 KB
testcase_27 AC 84 ms
5,248 KB
testcase_28 AC 84 ms
5,248 KB
testcase_29 AC 83 ms
5,248 KB
testcase_30 AC 84 ms
5,248 KB
testcase_31 AC 84 ms
5,248 KB
testcase_32 AC 2 ms
5,248 KB
testcase_33 AC 43 ms
5,248 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