結果

問題 No.1042 愚直大学
ユーザー fuppy_kyoprofuppy_kyopro
提出日時 2020-05-01 21:43:36
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 515 bytes
コンパイル時間 683 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 89,216 KB
最終ジャッジ日時 2024-06-07 04:05:17
合計ジャッジ時間 46,601 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,790 ms
86,784 KB
testcase_01 AC 1,825 ms
88,192 KB
testcase_02 AC 1,741 ms
86,784 KB
testcase_03 AC 1,862 ms
87,680 KB
testcase_04 AC 1,857 ms
88,192 KB
testcase_05 AC 1,824 ms
86,528 KB
testcase_06 AC 1,772 ms
87,424 KB
testcase_07 AC 1,736 ms
87,680 KB
testcase_08 AC 1,825 ms
87,040 KB
testcase_09 AC 1,587 ms
86,656 KB
testcase_10 AC 1,822 ms
87,936 KB
testcase_11 AC 1,760 ms
86,784 KB
testcase_12 AC 1,789 ms
87,040 KB
testcase_13 AC 1,742 ms
87,040 KB
testcase_14 AC 1,821 ms
88,576 KB
testcase_15 AC 1,771 ms
86,656 KB
testcase_16 AC 1,715 ms
87,040 KB
testcase_17 AC 1,683 ms
86,912 KB
testcase_18 AC 1,767 ms
86,784 KB
testcase_19 AC 1,704 ms
87,296 KB
testcase_20 AC 1,848 ms
86,912 KB
testcase_21 AC 1,895 ms
89,216 KB
testcase_22 AC 1,814 ms
87,168 KB
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