結果

問題 No.1042 愚直大学
ユーザー brthyyjpbrthyyjp
提出日時 2020-06-22 01:09:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 44 ms / 2,000 ms
コード長 270 bytes
コンパイル時間 188 ms
コンパイル使用メモリ 82,296 KB
実行使用メモリ 61,508 KB
最終ジャッジ日時 2024-07-03 18:31:18
合計ジャッジ時間 2,163 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
60,980 KB
testcase_01 AC 41 ms
60,092 KB
testcase_02 AC 37 ms
59,668 KB
testcase_03 AC 41 ms
60,440 KB
testcase_04 AC 37 ms
59,768 KB
testcase_05 AC 39 ms
60,708 KB
testcase_06 AC 41 ms
60,416 KB
testcase_07 AC 41 ms
60,064 KB
testcase_08 AC 43 ms
59,932 KB
testcase_09 AC 40 ms
60,416 KB
testcase_10 AC 42 ms
60,412 KB
testcase_11 AC 44 ms
61,508 KB
testcase_12 AC 43 ms
61,448 KB
testcase_13 AC 41 ms
59,884 KB
testcase_14 AC 42 ms
59,300 KB
testcase_15 AC 41 ms
60,432 KB
testcase_16 AC 42 ms
60,040 KB
testcase_17 AC 41 ms
59,516 KB
testcase_18 AC 41 ms
60,172 KB
testcase_19 AC 39 ms
59,964 KB
testcase_20 AC 37 ms
59,540 KB
testcase_21 AC 37 ms
60,876 KB
testcase_22 AC 39 ms
60,384 KB
testcase_23 AC 37 ms
60,452 KB
testcase_24 AC 38 ms
59,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

p, q = map(int, input().split())

import math

def is_ok(n):
    if p+q*n*math.log2(n)-n**2 >= 0:
        return True
    else:
        return False

l = 0
r = 10**18
for i in range(10**4):
    c = (l+r)/2
    if is_ok(c):
        l = c
    else:
        r = c
print(l)
0