結果

問題 No.2420 Simple Problem
ユーザー RhoRho
提出日時 2023-08-12 14:06:54
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 529 ms / 2,000 ms
コード長 656 bytes
コンパイル時間 3,620 ms
コンパイル使用メモリ 228,264 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-19 17:26:57
合計ジャッジ時間 20,843 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 215 ms
5,248 KB
testcase_02 AC 4 ms
5,248 KB
testcase_03 AC 79 ms
5,248 KB
testcase_04 AC 411 ms
5,248 KB
testcase_05 AC 267 ms
5,248 KB
testcase_06 AC 503 ms
5,248 KB
testcase_07 AC 515 ms
5,248 KB
testcase_08 AC 508 ms
5,248 KB
testcase_09 AC 515 ms
5,248 KB
testcase_10 AC 505 ms
5,248 KB
testcase_11 AC 524 ms
5,248 KB
testcase_12 AC 519 ms
5,248 KB
testcase_13 AC 525 ms
5,248 KB
testcase_14 AC 514 ms
5,248 KB
testcase_15 AC 506 ms
5,248 KB
testcase_16 AC 518 ms
5,248 KB
testcase_17 AC 510 ms
5,248 KB
testcase_18 AC 517 ms
5,248 KB
testcase_19 AC 529 ms
5,248 KB
testcase_20 AC 515 ms
5,248 KB
testcase_21 AC 520 ms
5,248 KB
testcase_22 AC 509 ms
5,248 KB
testcase_23 AC 509 ms
5,248 KB
testcase_24 AC 510 ms
5,248 KB
testcase_25 AC 505 ms
5,248 KB
testcase_26 AC 2 ms
5,248 KB
testcase_27 AC 395 ms
5,248 KB
testcase_28 AC 401 ms
5,248 KB
testcase_29 AC 398 ms
5,248 KB
testcase_30 AC 414 ms
5,248 KB
testcase_31 AC 405 ms
5,248 KB
testcase_32 AC 2 ms
5,248 KB
testcase_33 AC 207 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include<atcoder/all>
#define rep(i,n) for(int i=0;i<n;i++)
using namespace std;
using namespace atcoder;
#define all(a) a.begin(),a.end()
typedef long long ll;
typedef pair<ll,int> P;
typedef vector<ll> vi;
constexpr ll inf=1ll<<61;
constexpr ll mod=998244353;
typedef modint998244353 mi;

int main(){
    int n;cin>>n;
    rep(i,n){
        ll a,b;cin>>a>>b;
        ll lb=0,ub=70000;
        while(ub-lb>1){
            ll mi=(ub+lb)/2;
            if(mi*mi-a-b<0)lb=mi;
            else{
                if(4*a*b<(mi*mi-a-b)*(mi*mi-a-b))ub=mi;
                else lb=mi;
            }
        }
        cout<<ub<<endl;
    }
}
0