結果

問題 No.1042 愚直大学
ユーザー Rubikun
提出日時 2020-05-01 21:28:35
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 854 bytes
コンパイル時間 1,741 ms
コンパイル使用メモリ 166,620 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-12-24 21:59:57
合計ジャッジ時間 2,739 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 15 WA * 8
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
template<class T>bool chmax(T &a, const T &b) { if (a<b) { a=b; return true; } return false; }
template<class T>bool chmin(T &a, const T &b) { if (b<a) { a=b; return true; } return false; }
#define all(x) (x).begin(),(x).end()
#define fi first
#define se second
#define si(x) int(x.size())
const int mod=1000000007,MAX=200005,INF=1<<30;

int main(){
    
    std::ifstream in("text.txt");
    std::cin.rdbuf(in.rdbuf());
    cin.tie(0);
    ios::sync_with_stdio(false);
    
    double P,Q;cin>>P>>Q;
    double left=1.0,right=INF;
    
    for(int t=0;t<100;t++){
        double mid=(left+right)/2.0;
        
        double a=mid*mid;
        double b=P+Q*mid*log2(mid);
        
        if(a<b) left=mid;
        else right=mid;
    }
    
    cout<<setprecision(25)<<left<<endl;
}

0