結果

問題 No.1042 愚直大学
ユーザー ShibuyapShibuyap
提出日時 2020-07-09 19:42:36
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
TLE  
実行時間 -
コード長 584 bytes
コンパイル時間 1,960 ms
コンパイル使用メモリ 193,140 KB
最終ジャッジ日時 2025-01-11 17:13:36
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
13,768 KB
testcase_01 TLE -
testcase_02 AC 1 ms
13,764 KB
testcase_03 AC 2 ms
10,276 KB
testcase_04 TLE -
testcase_05 TLE -
testcase_06 AC 1 ms
10,532 KB
testcase_07 AC 2 ms
13,760 KB
testcase_08 AC 2 ms
10,404 KB
testcase_09 AC 2 ms
13,772 KB
testcase_10 AC 2 ms
10,400 KB
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 AC 1 ms
6,820 KB
testcase_24 AC 2 ms
17,348 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i,n) for(int i = 0; i < (n); ++i)
#define srep(i,s,t) for (int i = s; i < t; ++i)
#define drep(i,n) for(int i = (n)-1; i >= 0; --i)
using namespace std;
typedef long long int ll;
typedef pair<int,int> P;
#define yn {puts("YES");}else{puts("NO");}
#define MAX_N 200005

int main() {
    double p, q;
    cin >> p >> q;
    double l = 1, r = 1e15;
    while(l+0.0000000001 < r){
        double m = (l + r) / 2;
        if(m*m <= p+q*m*log2(m)) l = m;
        else r = m;
    }
    cout << fixed << setprecision(10) << l << endl;
    return 0;
}
 
 
0