結果

問題 No.1042 愚直大学
ユーザー joybeeeejoybeeee
提出日時 2020-05-13 12:01:49
言語 Java21
(openjdk 21)
結果
AC  
実行時間 132 ms / 2,000 ms
コード長 546 bytes
コンパイル時間 2,108 ms
コンパイル使用メモリ 73,836 KB
実行使用メモリ 41,288 KB
最終ジャッジ日時 2024-09-14 15:32:47
合計ジャッジ時間 6,093 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
41,136 KB
testcase_01 AC 129 ms
41,164 KB
testcase_02 AC 115 ms
39,992 KB
testcase_03 AC 128 ms
40,904 KB
testcase_04 AC 129 ms
41,228 KB
testcase_05 AC 128 ms
41,216 KB
testcase_06 AC 129 ms
40,856 KB
testcase_07 AC 128 ms
41,240 KB
testcase_08 AC 113 ms
40,220 KB
testcase_09 AC 128 ms
40,976 KB
testcase_10 AC 130 ms
41,288 KB
testcase_11 AC 117 ms
39,892 KB
testcase_12 AC 129 ms
40,668 KB
testcase_13 AC 128 ms
40,948 KB
testcase_14 AC 117 ms
40,036 KB
testcase_15 AC 125 ms
40,856 KB
testcase_16 AC 129 ms
40,828 KB
testcase_17 AC 126 ms
41,052 KB
testcase_18 AC 119 ms
39,820 KB
testcase_19 AC 130 ms
40,888 KB
testcase_20 AC 130 ms
41,288 KB
testcase_21 AC 130 ms
41,168 KB
testcase_22 AC 118 ms
39,996 KB
testcase_23 AC 131 ms
40,968 KB
testcase_24 AC 132 ms
40,984 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
public class Main {

  public static void main(String[] args) { 
      Scanner sc = new Scanner(System.in);
      int p = sc.nextInt();
      int q = sc.nextInt();

      double left = 1.0, right = Double.MAX_VALUE;
      while(right - left > 10e-6) {
        double mid = left + (right - left) / 2;
        double res1 = mid * mid;
        double res2 = p + q * mid * Math.log(mid) / Math.log(2);
        if(res1 < res2)
          left = mid;
        else
          right = mid;
      }
      System.out.println(right);
  }
}
0