結果

問題 No.2420 Simple Problem
ユーザー LaFolia13LaFolia13
提出日時 2023-07-29 17:28:35
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 548 ms / 2,000 ms
コード長 603 bytes
コンパイル時間 1,502 ms
コンパイル使用メモリ 165,976 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-08 05:14:54
合計ジャッジ時間 19,548 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 223 ms
5,248 KB
testcase_02 AC 4 ms
5,248 KB
testcase_03 AC 80 ms
5,248 KB
testcase_04 AC 425 ms
5,248 KB
testcase_05 AC 269 ms
5,248 KB
testcase_06 AC 541 ms
5,248 KB
testcase_07 AC 548 ms
5,248 KB
testcase_08 AC 541 ms
5,248 KB
testcase_09 AC 534 ms
5,248 KB
testcase_10 AC 540 ms
5,248 KB
testcase_11 AC 539 ms
5,248 KB
testcase_12 AC 541 ms
5,248 KB
testcase_13 AC 532 ms
5,248 KB
testcase_14 AC 542 ms
5,248 KB
testcase_15 AC 545 ms
5,248 KB
testcase_16 AC 531 ms
5,248 KB
testcase_17 AC 524 ms
5,248 KB
testcase_18 AC 543 ms
5,248 KB
testcase_19 AC 531 ms
5,248 KB
testcase_20 AC 536 ms
5,248 KB
testcase_21 AC 536 ms
5,248 KB
testcase_22 AC 524 ms
5,248 KB
testcase_23 AC 542 ms
5,248 KB
testcase_24 AC 525 ms
5,248 KB
testcase_25 AC 536 ms
5,248 KB
testcase_26 AC 2 ms
5,248 KB
testcase_27 AC 409 ms
5,248 KB
testcase_28 AC 420 ms
5,248 KB
testcase_29 AC 415 ms
5,248 KB
testcase_30 AC 414 ms
5,248 KB
testcase_31 AC 409 ms
5,248 KB
testcase_32 AC 2 ms
5,248 KB
testcase_33 AC 210 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;
using llong = long long;
using ullong = unsigned long long;
using ldbl = long double;
using lpair = pair<llong, llong>;

#define ALL(x) x.begin(), x.end()

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

  for (int i = 0; i < N; i++) {
    ullong A, B;
    cin >> A >> B;

    ullong ng = 0, ok = 64000;
    while (ok - ng > 1) {
      ullong mid = (ok + ng) / 2;
      if (mid * mid >= A + B && 4 * A * B < (mid * mid - A - B) * (mid * mid - A - B)) {
        ok = mid;
      }
      else {
        ng = mid;
      }
    }

    cout << ok << endl;
  }

  return 0;
}
0