結果

問題 No.2420 Simple Problem
ユーザー takumi152takumi152
提出日時 2023-08-12 15:11:27
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 430 ms / 2,000 ms
コード長 925 bytes
コンパイル時間 1,034 ms
コンパイル使用メモリ 103,236 KB
実行使用メモリ 9,384 KB
最終ジャッジ日時 2024-04-30 08:19:22
合計ジャッジ時間 16,486 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 177 ms
6,944 KB
testcase_02 AC 4 ms
6,944 KB
testcase_03 AC 67 ms
6,940 KB
testcase_04 AC 342 ms
8,496 KB
testcase_05 AC 218 ms
6,944 KB
testcase_06 AC 426 ms
9,252 KB
testcase_07 AC 426 ms
9,256 KB
testcase_08 AC 430 ms
9,384 KB
testcase_09 AC 424 ms
9,256 KB
testcase_10 AC 428 ms
9,252 KB
testcase_11 AC 424 ms
9,380 KB
testcase_12 AC 426 ms
9,256 KB
testcase_13 AC 427 ms
9,376 KB
testcase_14 AC 430 ms
9,384 KB
testcase_15 AC 429 ms
9,252 KB
testcase_16 AC 430 ms
9,380 KB
testcase_17 AC 429 ms
9,256 KB
testcase_18 AC 425 ms
9,380 KB
testcase_19 AC 428 ms
9,352 KB
testcase_20 AC 422 ms
9,260 KB
testcase_21 AC 430 ms
9,260 KB
testcase_22 AC 428 ms
9,256 KB
testcase_23 AC 422 ms
9,256 KB
testcase_24 AC 424 ms
9,260 KB
testcase_25 AC 427 ms
9,380 KB
testcase_26 AC 2 ms
6,944 KB
testcase_27 AC 338 ms
8,476 KB
testcase_28 AC 346 ms
8,464 KB
testcase_29 AC 337 ms
8,560 KB
testcase_30 AC 345 ms
8,604 KB
testcase_31 AC 344 ms
8,476 KB
testcase_32 AC 2 ms
6,940 KB
testcase_33 AC 170 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <iomanip>
#include <vector>
#include <algorithm>
#include <utility>
#include <string>
#include <queue>
#include <stack>
#include <unordered_map>

using namespace std;

typedef long long int ll;
typedef pair<int, int> Pii;

const ll mod = 998244353;

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

  int n;
  cin >> n;
  vector<pair<ll, ll>> ab(n);
  for (auto &x: ab) cin >> x.first >> x.second;

  vector<ll> ans;
  for (int i = 0; i < n; i++) {
    __int128_t a = ab[i].first;
    __int128_t b = ab[i].second;
    __int128_t ng = 0;
    __int128_t ok = 100000;
    while (abs((ll) (ng - ok)) > 1) {
      __int128_t mid = (ng + ok) / 2;
      __int128_t x2ab = (mid * mid - a - b);
      __int128_t x2ab2 = x2ab * x2ab;
      if (x2ab >= 0 && a * b * 4 < x2ab2) ok = mid;
      else ng = mid;
    }
    ans.push_back(ok);
  }

  for (auto &x: ans) cout << x << endl;

  return 0;
}
0