結果

問題 No.2420 Simple Problem
ユーザー takumi152
提出日時 2023-08-12 14:07:56
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 838 bytes
コンパイル時間 1,147 ms
コンパイル使用メモリ 97,560 KB
最終ジャッジ日時 2025-02-16 04:15:45
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other WA * 33
権限があれば一括ダウンロードができます

ソースコード

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++) {
    auto &[a, b] = ab[i];
    ll ng = 0;
    ll ok = 50000;
    while (abs(ng - ok) > 1) {
      ll mid = (ng + ok) / 2;
      ll x2ab = (mid * mid - a - b) / 2;
      ll x2ab2 = x2ab * x2ab;
      if (x2ab >= 0 && a * b < x2ab2) ok = mid;
      else ng = mid;
    }
    ans.push_back(ok);
  }

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

  return 0;
}
0