結果

問題 No.2420 Simple Problem
ユーザー throughthrough
提出日時 2023-08-12 14:25:30
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 540 ms / 2,000 ms
コード長 793 bytes
コンパイル時間 2,376 ms
コンパイル使用メモリ 202,600 KB
実行使用メモリ 11,264 KB
最終ジャッジ日時 2024-11-19 19:19:06
合計ジャッジ時間 20,474 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 33
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
using P = pair<ll, ll>;
using T = tuple<ll, ll, ll>;
// #include <atcoder/all>
// using namespace atcoder;
// using mint = modint1000000007;
#define rep(i, n) for(ll i = 0; i < n; i++)

int main() {
    cin.tie(nullptr);
    ios_base::sync_with_stdio(false);

    cout << setprecision(10) << fixed;
    
    ll n; cin >> n;
    vector<long double> a(n), b(n);
    rep(i,n) cin >> a[i] >> b[i];
    rep(i,n) {
        ll left = 1, right = 1e16;
        while( right-left > 1 ) {
            ll mid = (right+left)/2;
            bool f = ( (long double)(sqrt(a[i])+sqrt(b[i])) < (long double)mid);
            if( f ) right = mid;
            else left = mid;
        }
        cout << right << endl;
    }
    
    return 0;
}
0