結果

問題 No.1042 愚直大学
ユーザー wattaiheiwattaihei
提出日時 2020-05-01 21:34:55
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 190 bytes
コンパイル時間 707 ms
コンパイル使用メモリ 82,676 KB
実行使用メモリ 128,128 KB
最終ジャッジ日時 2024-12-24 22:38:31
合計ジャッジ時間 26,230 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
57,728 KB
testcase_01 AC 45 ms
127,616 KB
testcase_02 AC 40 ms
57,728 KB
testcase_03 AC 41 ms
127,360 KB
testcase_04 TLE -
testcase_05 TLE -
testcase_06 AC 41 ms
57,344 KB
testcase_07 AC 42 ms
127,872 KB
testcase_08 AC 42 ms
57,788 KB
testcase_09 AC 43 ms
128,128 KB
testcase_10 AC 42 ms
57,728 KB
testcase_11 AC 40 ms
128,128 KB
testcase_12 AC 40 ms
57,472 KB
testcase_13 AC 40 ms
127,872 KB
testcase_14 AC 39 ms
57,728 KB
testcase_15 AC 43 ms
52,352 KB
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 AC 43 ms
52,352 KB
testcase_23 AC 43 ms
52,352 KB
testcase_24 AC 43 ms
57,984 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import log2
P, Q = map(int, input().split())

l = 0.5
r = 10**18
while r - l > 10**(-7):
    m = (r+l)/2
    if m**2 < P+Q*m*log2(m):
        l = m
    else:
        r = m
print(l)
0