結果

問題 No.1042 愚直大学
ユーザー joybeeeejoybeeee
提出日時 2020-05-13 11:57:18
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 600 bytes
コンパイル時間 2,799 ms
コンパイル使用メモリ 77,804 KB
実行使用メモリ 54,348 KB
最終ジャッジ日時 2024-09-14 15:32:14
合計ジャッジ時間 6,473 ms
ジャッジサーバーID
(参考情報)
judge6 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
41,120 KB
testcase_01 AC 130 ms
40,948 KB
testcase_02 AC 131 ms
41,068 KB
testcase_03 AC 135 ms
41,116 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 136 ms
41,416 KB
testcase_07 AC 135 ms
41,188 KB
testcase_08 AC 133 ms
41,156 KB
testcase_09 AC 134 ms
41,200 KB
testcase_10 AC 135 ms
41,388 KB
testcase_11 AC 134 ms
41,020 KB
testcase_12 AC 135 ms
41,268 KB
testcase_13 AC 132 ms
41,164 KB
testcase_14 AC 134 ms
41,196 KB
testcase_15 AC 133 ms
41,392 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 134 ms
41,264 KB
testcase_23 AC 134 ms
40,956 KB
testcase_24 AC 134 ms
41,648 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 = Math.pow(10, 9);
      while(left < right) {
        double mid = left + (right - left) / 2;
        double res1 = mid * mid;
        double res2 = p + q * mid * Math.log(mid) / Math.log(2);
        if(Math.abs(left - right) <= Math.pow(10, -5) ) break;
        if(res1 < res2)
          left = mid;
        else
          right = mid;
      }
      System.out.println(right);
  }
}
0