結果

問題 No.2420 Simple Problem
ユーザー yansi819yansi819
提出日時 2024-04-06 18:42:29
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 598 ms / 2,000 ms
コード長 552 bytes
コンパイル時間 4,518 ms
コンパイル使用メモリ 262,124 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-10-01 03:59:11
合計ジャッジ時間 23,089 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 232 ms
6,820 KB
testcase_02 AC 4 ms
6,816 KB
testcase_03 AC 88 ms
6,816 KB
testcase_04 AC 470 ms
6,820 KB
testcase_05 AC 290 ms
6,820 KB
testcase_06 AC 564 ms
6,820 KB
testcase_07 AC 565 ms
6,816 KB
testcase_08 AC 569 ms
6,816 KB
testcase_09 AC 570 ms
6,820 KB
testcase_10 AC 575 ms
6,816 KB
testcase_11 AC 571 ms
6,820 KB
testcase_12 AC 578 ms
6,820 KB
testcase_13 AC 580 ms
6,820 KB
testcase_14 AC 577 ms
6,816 KB
testcase_15 AC 569 ms
6,820 KB
testcase_16 AC 570 ms
6,820 KB
testcase_17 AC 598 ms
6,816 KB
testcase_18 AC 566 ms
6,820 KB
testcase_19 AC 569 ms
6,820 KB
testcase_20 AC 573 ms
6,816 KB
testcase_21 AC 569 ms
6,820 KB
testcase_22 AC 559 ms
6,820 KB
testcase_23 AC 557 ms
6,820 KB
testcase_24 AC 568 ms
6,816 KB
testcase_25 AC 569 ms
6,820 KB
testcase_26 AC 2 ms
6,820 KB
testcase_27 AC 470 ms
6,820 KB
testcase_28 AC 450 ms
6,816 KB
testcase_29 AC 459 ms
6,820 KB
testcase_30 AC 470 ms
6,820 KB
testcase_31 AC 451 ms
6,816 KB
testcase_32 AC 2 ms
6,816 KB
testcase_33 AC 233 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using namespace atcoder;
using ll = long long;
using ld = long double;
using mint = modint998244353;

void solve() {
  u_int64_t A, B, mid; cin >> A >> B;
  int ok = 70000, ng = 2;
  while (abs(ok - ng) > 1) {
    mid = (ok + ng) / 2;
    u_int64_t Y = ((mid * mid) - A - B);
    if (4 * A * B < Y * Y && mid * mid > A + B) {
      ok = mid;
    } else {
      ng = mid;
    }
  }
  cout << ok << endl;
}
int main() {
  int N; cin >> N;
  while (N--) {
    solve();
  }
  return 0;
}
0