結果
問題 |
No.1042 愚直大学
|
ユーザー |
|
提出日時 | 2022-02-27 19:56:18 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
TLE
|
実行時間 | - |
コード長 | 233 bytes |
コンパイル時間 | 464 ms |
コンパイル使用メモリ | 12,416 KB |
実行使用メモリ | 16,384 KB |
最終ジャッジ日時 | 2024-07-05 19:16:58 |
合計ジャッジ時間 | 4,050 ms |
ジャッジサーバーID (参考情報) |
judge4 / 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.000001: mid = (y+x)/2 if is_ok(mid): x = mid else: y = mid print(x)