結果

問題 No.1042 愚直大学
ユーザー fuppy_kyoprofuppy_kyopro
提出日時 2020-05-01 21:43:36
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 515 bytes
コンパイル時間 360 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 171,264 KB
最終ジャッジ日時 2024-12-25 02:47:22
合計ジャッジ時間 52,603 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 TLE -
testcase_02 AC 1,990 ms
86,912 KB
testcase_03 TLE -
testcase_04 TLE -
testcase_05 TLE -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 AC 1,806 ms
86,784 KB
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 AC 1,974 ms
86,784 KB
testcase_14 TLE -
testcase_15 TLE -
testcase_16 AC 1,957 ms
87,552 KB
testcase_17 AC 1,910 ms
86,528 KB
testcase_18 TLE -
testcase_19 AC 1,929 ms
87,424 KB
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 WA -
testcase_24 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
from decimal import Decimal


def check(n, p, q):
    if n / q >= 100:
         return False
    a = p + q * n * Decimal.ln(n) / Decimal.ln(Decimal(2))
    b = n * n
    return b <= a

def main():
    P, Q = map(int, input().split())
    p, q = Decimal(P), Decimal(Q)

    ok, ng = Decimal(1), Decimal(1e16)
    for _ in range(10000):
        n = (ok + ng) / Decimal(2)
        if check(n, p, q):
            ok = n
        else:
            ng = n
    print(ok)


if __name__ == '__main__':
    main()
0