結果

問題 No.1042 愚直大学
ユーザー roarisroaris
提出日時 2020-05-08 00:09:59
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 270 bytes
コンパイル時間 172 ms
コンパイル使用メモリ 82,580 KB
実行使用メモリ 54,892 KB
最終ジャッジ日時 2024-07-03 09:42:41
合計ジャッジ時間 1,968 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,060 KB
testcase_01 AC 38 ms
53,984 KB
testcase_02 AC 35 ms
53,172 KB
testcase_03 AC 35 ms
53,856 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 35 ms
52,996 KB
testcase_07 AC 35 ms
53,852 KB
testcase_08 AC 35 ms
54,060 KB
testcase_09 AC 35 ms
52,508 KB
testcase_10 AC 35 ms
52,872 KB
testcase_11 AC 35 ms
53,896 KB
testcase_12 AC 35 ms
53,540 KB
testcase_13 AC 35 ms
52,972 KB
testcase_14 AC 35 ms
52,904 KB
testcase_15 AC 35 ms
53,812 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 36 ms
54,228 KB
testcase_23 AC 34 ms
52,568 KB
testcase_24 AC 36 ms
53,388 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import *

def binary_search():
    l, r = 1, 10**9
    
    while r-l>=1e-6:
        m = (l+r)/2
        
        if m**2<=P+Q*m*log(m, 2):
            l = m
        else:
            r = m

    return l

P, Q = map(int, input().split())
print(binary_search())
0