結果

問題 No.456 Millions of Submits!
ユーザー titiatitia
提出日時 2023-08-09 01:34:25
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 409 bytes
コンパイル時間 196 ms
コンパイル使用メモリ 82,548 KB
実行使用メモリ 77,264 KB
最終ジャッジ日時 2024-11-14 06:43:17
合計ジャッジ時間 9,978 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
59,988 KB
testcase_01 AC 39 ms
53,272 KB
testcase_02 AC 38 ms
54,196 KB
testcase_03 AC 37 ms
53,064 KB
testcase_04 AC 38 ms
52,796 KB
testcase_05 AC 48 ms
61,592 KB
testcase_06 AC 49 ms
62,060 KB
testcase_07 AC 96 ms
76,720 KB
testcase_08 AC 102 ms
76,872 KB
testcase_09 AC 200 ms
77,040 KB
testcase_10 AC 197 ms
77,264 KB
testcase_11 AC 867 ms
77,224 KB
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

    if a==0:
        print(2.718281828459045**(t**(1/b)))
        continue
        

    MAX = 10
    MIN = 0

    while MAX-MIN>10**(-9):
        mid=(MAX+MIN)/2

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

    print((MAX+MIN)/2)
0