結果

問題 No.1042 愚直大学
ユーザー nohakai3nohakai3
提出日時 2022-11-17 12:45:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 38 ms / 2,000 ms
コード長 196 bytes
コンパイル時間 319 ms
コンパイル使用メモリ 82,096 KB
実行使用メモリ 54,080 KB
最終ジャッジ日時 2024-09-19 01:22:27
合計ジャッジ時間 1,791 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,468 KB
testcase_01 AC 35 ms
53,236 KB
testcase_02 AC 33 ms
52,252 KB
testcase_03 AC 34 ms
54,080 KB
testcase_04 AC 33 ms
52,580 KB
testcase_05 AC 37 ms
53,184 KB
testcase_06 AC 34 ms
53,108 KB
testcase_07 AC 35 ms
53,872 KB
testcase_08 AC 36 ms
53,180 KB
testcase_09 AC 36 ms
53,208 KB
testcase_10 AC 37 ms
52,196 KB
testcase_11 AC 34 ms
52,632 KB
testcase_12 AC 38 ms
53,264 KB
testcase_13 AC 34 ms
52,712 KB
testcase_14 AC 34 ms
53,132 KB
testcase_15 AC 34 ms
54,068 KB
testcase_16 AC 35 ms
52,452 KB
testcase_17 AC 36 ms
52,380 KB
testcase_18 AC 33 ms
53,664 KB
testcase_19 AC 34 ms
52,996 KB
testcase_20 AC 34 ms
52,660 KB
testcase_21 AC 34 ms
52,380 KB
testcase_22 AC 35 ms
52,804 KB
testcase_23 AC 36 ms
53,176 KB
testcase_24 AC 34 ms
53,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

p,q=map(int,input().split())
l=1
r=10**16
from math import log2
eps=10**(-7)
for i in range(0,1010):
    md=(l+r)/2
    if md*md<=p+q*md*log2(md)+eps:
        l=md
    else:
        r=md

print(l)
0