結果

問題 No.1042 愚直大学
ユーザー uni_pythonuni_python
提出日時 2020-06-21 14:39:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 50 ms / 2,000 ms
コード長 460 bytes
コンパイル時間 174 ms
コンパイル使用メモリ 82,496 KB
実行使用メモリ 61,216 KB
最終ジャッジ日時 2024-07-03 17:59:33
合計ジャッジ時間 2,124 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
61,144 KB
testcase_01 AC 47 ms
60,016 KB
testcase_02 AC 45 ms
61,176 KB
testcase_03 AC 46 ms
60,260 KB
testcase_04 AC 46 ms
60,252 KB
testcase_05 AC 46 ms
59,876 KB
testcase_06 AC 45 ms
59,912 KB
testcase_07 AC 45 ms
60,152 KB
testcase_08 AC 46 ms
60,476 KB
testcase_09 AC 50 ms
59,620 KB
testcase_10 AC 46 ms
59,792 KB
testcase_11 AC 45 ms
60,832 KB
testcase_12 AC 45 ms
59,684 KB
testcase_13 AC 46 ms
59,228 KB
testcase_14 AC 46 ms
60,592 KB
testcase_15 AC 46 ms
61,020 KB
testcase_16 AC 46 ms
60,944 KB
testcase_17 AC 44 ms
59,848 KB
testcase_18 AC 46 ms
60,832 KB
testcase_19 AC 45 ms
60,676 KB
testcase_20 AC 46 ms
58,888 KB
testcase_21 AC 46 ms
59,512 KB
testcase_22 AC 46 ms
60,652 KB
testcase_23 AC 46 ms
59,932 KB
testcase_24 AC 47 ms
61,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=sys.stdin.readline
def I(): return int(input())
def MI(): return map(int, input().split())
def LI(): return list(map(int, input().split()))
mod=10**9+7

def main():
    import math
    P,Q=MI()
    
    def f(x):
        return x**2<=P+Q*x*math.log2(x)
    
    ok=1
    ng=10**16
    
    for _ in range(10**5):
        x=(ok+ng)/2
        if f(x):
            ok=x
        else:
            ng=x
            
    print(ok)
    
    


main()
0