結果

問題 No.456 Millions of Submits!
ユーザー titiatitia
提出日時 2023-08-09 01:15:15
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 325 bytes
コンパイル時間 172 ms
コンパイル使用メモリ 81,888 KB
実行使用メモリ 85,004 KB
最終ジャッジ日時 2024-11-14 06:30:57
合計ジャッジ時間 10,618 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
54,084 KB
testcase_01 AC 40 ms
53,536 KB
testcase_02 AC 38 ms
53,172 KB
testcase_03 AC 39 ms
53,752 KB
testcase_04 AC 39 ms
53,244 KB
testcase_05 AC 59 ms
66,408 KB
testcase_06 AC 63 ms
66,952 KB
testcase_07 AC 117 ms
77,080 KB
testcase_08 AC 120 ms
77,316 KB
testcase_09 AC 266 ms
77,332 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import log

q=int(input())

for tests in range(q):
    a,b,t=map(float,input().split())

    # n**a * log(n)**b = t

    MAX = 22027
    MIN = 0

    for tt in range(100):
        mid=(MAX+MIN)/2

        if (mid ** a) *(log(mid)**b)>=t:
            MAX=mid
        else:
            MIN=mid

    print((MAX+MIN)/2)
0