結果
| 問題 | No.2420 Simple Problem | 
| コンテスト | |
| ユーザー |  | 
| 提出日時 | 2023-08-12 15:11:27 | 
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) | 
| 結果 | 
                                AC
                                 
                             | 
| 実行時間 | 438 ms / 2,000 ms | 
| コード長 | 925 bytes | 
| コンパイル時間 | 1,260 ms | 
| コンパイル使用メモリ | 99,516 KB | 
| 最終ジャッジ日時 | 2025-02-16 05:50:06 | 
| ジャッジサーバーID (参考情報) | judge3 / judge4 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 1 | 
| other | AC * 33 | 
ソースコード
#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;
}
            
            
            
        