結果

問題 No.1042 愚直大学
ユーザー U SU S
提出日時 2020-05-01 22:16:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 40 ms / 2,000 ms
コード長 200 bytes
コンパイル時間 162 ms
コンパイル使用メモリ 82,436 KB
実行使用メモリ 54,140 KB
最終ジャッジ日時 2024-06-07 10:02:09
合計ジャッジ時間 1,949 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,784 KB
testcase_01 AC 39 ms
54,140 KB
testcase_02 AC 38 ms
53,624 KB
testcase_03 AC 38 ms
52,840 KB
testcase_04 AC 37 ms
53,824 KB
testcase_05 AC 38 ms
52,952 KB
testcase_06 AC 37 ms
52,568 KB
testcase_07 AC 38 ms
52,840 KB
testcase_08 AC 36 ms
53,328 KB
testcase_09 AC 37 ms
53,144 KB
testcase_10 AC 37 ms
54,124 KB
testcase_11 AC 37 ms
53,012 KB
testcase_12 AC 37 ms
52,728 KB
testcase_13 AC 37 ms
53,988 KB
testcase_14 AC 37 ms
53,652 KB
testcase_15 AC 37 ms
53,128 KB
testcase_16 AC 37 ms
53,908 KB
testcase_17 AC 37 ms
52,904 KB
testcase_18 AC 38 ms
53,028 KB
testcase_19 AC 37 ms
52,700 KB
testcase_20 AC 37 ms
52,632 KB
testcase_21 AC 37 ms
53,328 KB
testcase_22 AC 37 ms
53,468 KB
testcase_23 AC 37 ms
52,584 KB
testcase_24 AC 36 ms
52,720 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
p, q = map(int,input().split())
l = 1
r = int(1e11)
while r-l > 1/int(1e5):
    m = (l+r) / 2
    f = p + q*m*math.log2(m)
    if m**2 >= f:
        r = m
    else:
        l = m
print(l)
0