結果

問題 No.2420 Simple Problem
ユーザー simansiman
提出日時 2023-08-20 19:58:56
言語 C++17(clang)
(17.0.6 + boost 1.83.0)
結果
AC  
実行時間 582 ms / 2,000 ms
コード長 633 bytes
コンパイル時間 5,052 ms
コンパイル使用メモリ 140,396 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-05-08 02:23:19
合計ジャッジ時間 24,690 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 224 ms
6,940 KB
testcase_02 AC 4 ms
6,940 KB
testcase_03 AC 88 ms
6,940 KB
testcase_04 AC 447 ms
6,940 KB
testcase_05 AC 294 ms
6,940 KB
testcase_06 AC 572 ms
6,944 KB
testcase_07 AC 582 ms
6,940 KB
testcase_08 AC 548 ms
6,944 KB
testcase_09 AC 557 ms
6,940 KB
testcase_10 AC 558 ms
6,940 KB
testcase_11 AC 549 ms
6,944 KB
testcase_12 AC 553 ms
6,940 KB
testcase_13 AC 549 ms
6,944 KB
testcase_14 AC 553 ms
6,940 KB
testcase_15 AC 556 ms
6,944 KB
testcase_16 AC 552 ms
6,944 KB
testcase_17 AC 578 ms
6,940 KB
testcase_18 AC 571 ms
6,944 KB
testcase_19 AC 571 ms
6,940 KB
testcase_20 AC 552 ms
6,944 KB
testcase_21 AC 560 ms
6,940 KB
testcase_22 AC 557 ms
6,940 KB
testcase_23 AC 580 ms
6,940 KB
testcase_24 AC 565 ms
6,944 KB
testcase_25 AC 557 ms
6,944 KB
testcase_26 AC 2 ms
6,944 KB
testcase_27 AC 457 ms
6,940 KB
testcase_28 AC 452 ms
6,940 KB
testcase_29 AC 443 ms
6,944 KB
testcase_30 AC 445 ms
6,940 KB
testcase_31 AC 447 ms
6,944 KB
testcase_32 AC 1 ms
6,940 KB
testcase_33 AC 228 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cassert>
#include <cmath>
#include <algorithm>
#include <iostream>
#include <iomanip>
#include <climits>
#include <map>
#include <queue>
#include <set>
#include <cstring>
#include <vector>

using namespace std;
typedef long long ll;

int main() {
  int N;
  cin >> N;

  for (int i = 0; i < N; ++i) {
    ll a, b;
    cin >> a >> b;

    ll ok = 1000000000;
    ll ng = 0;

    while (abs(ok - ng) >= 2) {
      __int128 x = (ok + ng) / 2;
      __int128 v = x * x - (a + b);

      if (v >= 0 && 4 * a * b < v * v) {
        ok = x;
      } else {
        ng = x;
      }
    }

    cout << ok << endl;
  }

  return 0;
}
0