結果

問題 No.1042 愚直大学
ユーザー syunsukesyunsuke
提出日時 2020-09-15 22:38:20
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 213 bytes
コンパイル時間 155 ms
コンパイル使用メモリ 82,200 KB
実行使用メモリ 61,056 KB
最終ジャッジ日時 2024-06-22 02:46:59
合計ジャッジ時間 2,323 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
60,832 KB
testcase_01 AC 42 ms
60,496 KB
testcase_02 AC 43 ms
60,200 KB
testcase_03 AC 42 ms
59,932 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 42 ms
60,072 KB
testcase_07 AC 45 ms
59,564 KB
testcase_08 AC 42 ms
59,976 KB
testcase_09 AC 44 ms
59,484 KB
testcase_10 AC 43 ms
60,328 KB
testcase_11 AC 43 ms
59,636 KB
testcase_12 AC 43 ms
59,632 KB
testcase_13 AC 44 ms
61,056 KB
testcase_14 AC 43 ms
59,352 KB
testcase_15 AC 43 ms
60,068 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 43 ms
59,368 KB
testcase_19 WA -
testcase_20 AC 43 ms
59,220 KB
testcase_21 AC 43 ms
60,352 KB
testcase_22 AC 42 ms
59,348 KB
testcase_23 AC 43 ms
59,220 KB
testcase_24 AC 42 ms
60,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math

P,Q=map(int,input().split())

High=10**10
Low=0

for i in range(10**4):
    Mid=(High + Low)/2
    if Mid ** 2 > P + Q * Mid * math.log2(Mid):
        High = Mid
    else:
        Low = Mid
print(Mid)
0