結果
| 問題 | No.456 Millions of Submits! |
| コンテスト | |
| ユーザー |
titia
|
| 提出日時 | 2023-08-09 01:11:16 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 322 bytes |
| コンパイル時間 | 259 ms |
| コンパイル使用メモリ | 82,396 KB |
| 実行使用メモリ | 84,952 KB |
| 最終ジャッジ日時 | 2024-11-14 06:26:24 |
| 合計ジャッジ時間 | 12,134 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 4 WA * 8 TLE * 1 |
ソースコード
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 = 10
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)
titia