結果
| 問題 |
No.1042 愚直大学
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2022-02-27 19:55:16 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 234 bytes |
| コンパイル時間 | 147 ms |
| コンパイル使用メモリ | 12,288 KB |
| 実行使用メモリ | 16,256 KB |
| 最終ジャッジ日時 | 2024-07-05 19:15:28 |
| 合計ジャッジ時間 | 3,860 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 2 TLE * 1 -- * 20 |
ソースコード
P,Q = map(int,input().split())
import math
def is_ok(x):
return x**2 - (P+Q*x*math.log2(x))<0
y = pow(10,20)
x = 1
while y-x>0.0000001:
mid = (y+x)/2
if is_ok(mid):
x = mid
else:
y = mid
print(x)