結果

問題 No.2420 Simple Problem
ユーザー hiromi_ayasehiromi_ayase
提出日時 2023-08-12 14:55:02
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 2,587 bytes
コンパイル時間 2,332 ms
コンパイル使用メモリ 78,612 KB
実行使用メモリ 72,668 KB
最終ジャッジ日時 2024-04-30 07:33:56
合計ジャッジ時間 27,529 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
42,704 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 TLE -
testcase_05 WA -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 WA -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 AC 57 ms
50,740 KB
testcase_33 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;
import java.math.BigInteger;

@SuppressWarnings("unused")
public class Main {

  private static void solve() {
    int n = ni();
    for (int i = 0; i < n; i ++) {
      solve(ni(), ni());
    }
  }

  private static void solve(long a, long b) {
    // a + b + 2sqrt(ab) < x^2
    // x^2 - a - b > 2sqrt(ab)
    // (x^2 - a- b)^2 > 4ab
    

    long ok = Integer.MAX_VALUE;
    long ng = 0;
    var p = BigInteger.valueOf(a).add(BigInteger.valueOf(b));
    var q = BigInteger.valueOf(a).multiply(BigInteger.valueOf(b)).multiply(BigInteger.valueOf(4));
    while (Math.abs(ok - ng) > 1) {
      long x = (ok + ng) / 2;

      var s = BigInteger.valueOf(x).pow(2);
      var y = s.subtract(p).pow(2).subtract(q);
      if (y.compareTo(BigInteger.ONE) > 0) {
        ok = x;
      } else {
        ng = x;
      }
    }
    out.println(ok);
  }

  public static void main(String[] args) {
    new Thread(null, new Runnable() {
      @Override
      public void run() {
        solve();
        out.flush();
      }
    }, "", 64000000).start();
  }

  private static PrintWriter out = new PrintWriter(System.out);
  private static StringTokenizer tokenizer = null;
  private static BufferedReader reader = new BufferedReader(new InputStreamReader(System.in), 32768);

  public static String next() {
    while (tokenizer == null || !tokenizer.hasMoreTokens()) {
      try {
        tokenizer = new java.util.StringTokenizer(reader.readLine());
      } catch (Exception e) {
        throw new RuntimeException(e);
      }
    }
    return tokenizer.nextToken();
  }

  private static double nd() {
    return Double.parseDouble(next());
  }

  private static long nl() {
    return Long.parseLong(next());
  }

  private static int[] na(int n) {
    int[] a = new int[n];
    for (int i = 0; i < n; i++)
      a[i] = ni();
    return a;
  }

  private static char[] ns() {
    return next().toCharArray();
  }

  private static long[] nal(int n) {
    long[] a = new long[n];
    for (int i = 0; i < n; i++)
      a[i] = nl();
    return a;
  }

  private static int[][] ntable(int n, int m) {
    int[][] table = new int[n][m];
    for (int i = 0; i < n; i++) {
      for (int j = 0; j < m; j++) {
        table[i][j] = ni();
      }
    }
    return table;
  }

  private static int[][] nlist(int n, int m) {
    int[][] table = new int[m][n];
    for (int i = 0; i < n; i++) {
      for (int j = 0; j < m; j++) {
        table[j][i] = ni();
      }
    }
    return table;
  }

  private static int ni() {
    return Integer.parseInt(next());
  }
}
0