結果
問題 | No.1042 愚直大学 |
ユーザー | joybeeee |
提出日時 | 2020-05-13 12:01:25 |
言語 | Java21 (openjdk 21) |
結果 |
TLE
|
実行時間 | - |
コード長 | 546 bytes |
コンパイル時間 | 2,043 ms |
コンパイル使用メモリ | 74,216 KB |
実行使用メモリ | 47,356 KB |
最終ジャッジ日時 | 2024-09-14 15:32:41 |
合計ジャッジ時間 | 6,208 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge6 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 132 ms
46,840 KB |
testcase_01 | AC | 133 ms
41,192 KB |
testcase_02 | AC | 126 ms
41,216 KB |
testcase_03 | AC | 131 ms
41,288 KB |
testcase_04 | TLE | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
ソースコード
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-9) { 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); } }