結果
問題 | No.1042 愚直大学 |
ユーザー | joybeeee |
提出日時 | 2020-05-13 11:53:08 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 569 bytes |
コンパイル時間 | 2,158 ms |
コンパイル使用メモリ | 77,108 KB |
実行使用メモリ | 47,124 KB |
最終ジャッジ日時 | 2024-09-14 15:31:12 |
合計ジャッジ時間 | 6,096 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 134 ms
46,764 KB |
testcase_01 | WA | - |
testcase_02 | AC | 132 ms
41,264 KB |
testcase_03 | TLE | - |
testcase_04 | -- | - |
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 = Math.pow(10, 7); 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(res1 == res2) break; if(res1 < res2) left = mid; else right = mid; } System.out.println(right); } }