結果

問題 No.2420 Simple Problem
ユーザー hiromi_ayasehiromi_ayase
提出日時 2023-08-12 15:06:33
言語 Java21
(openjdk 21)
結果
AC  
実行時間 927 ms / 2,000 ms
コード長 2,460 bytes
コンパイル時間 2,476 ms
コンパイル使用メモリ 79,268 KB
実行使用メモリ 51,144 KB
最終ジャッジ日時 2024-06-11 15:12:09
合計ジャッジ時間 33,293 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
37,632 KB
testcase_01 AC 502 ms
50,004 KB
testcase_02 AC 119 ms
43,468 KB
testcase_03 AC 325 ms
49,204 KB
testcase_04 AC 672 ms
49,984 KB
testcase_05 AC 625 ms
50,644 KB
testcase_06 AC 894 ms
51,100 KB
testcase_07 AC 887 ms
51,036 KB
testcase_08 AC 895 ms
50,760 KB
testcase_09 AC 728 ms
50,172 KB
testcase_10 AC 718 ms
50,288 KB
testcase_11 AC 889 ms
50,656 KB
testcase_12 AC 893 ms
51,092 KB
testcase_13 AC 897 ms
50,708 KB
testcase_14 AC 904 ms
50,832 KB
testcase_15 AC 729 ms
50,156 KB
testcase_16 AC 770 ms
50,464 KB
testcase_17 AC 903 ms
50,812 KB
testcase_18 AC 907 ms
50,984 KB
testcase_19 AC 927 ms
50,956 KB
testcase_20 AC 719 ms
49,980 KB
testcase_21 AC 734 ms
50,280 KB
testcase_22 AC 730 ms
50,060 KB
testcase_23 AC 898 ms
51,144 KB
testcase_24 AC 725 ms
50,280 KB
testcase_25 AC 909 ms
50,780 KB
testcase_26 AC 55 ms
38,084 KB
testcase_27 AC 685 ms
50,172 KB
testcase_28 AC 692 ms
50,148 KB
testcase_29 AC 687 ms
50,088 KB
testcase_30 AC 704 ms
49,848 KB
testcase_31 AC 734 ms
50,208 KB
testcase_32 AC 47 ms
37,504 KB
testcase_33 AC 502 ms
49,992 KB
権限があれば一括ダウンロードができます

ソースコード

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 = (int)Math.sqrt(1e9) * 2 + 100;
    long ng = 0;
    var p = BigInteger.valueOf(4L * a * b);
    while (Math.abs(ok - ng) > 1) {
      long x = (ok + ng) / 2;
      long y = x * x - a - b;
      var q = BigInteger.valueOf(y).pow(2);
      if (y >= 0 && q.compareTo(p) > 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