結果
問題 | No.1042 愚直大学 |
ユーザー | Rubikun |
提出日時 | 2020-05-01 21:30:56 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 3 ms / 2,000 ms |
コード長 | 866 bytes |
コンパイル時間 | 1,694 ms |
コンパイル使用メモリ | 166,804 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-12-24 22:07:10 |
合計ジャッジ時間 | 2,635 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 23 |
ソースコード
#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; const ll INF=1LL<<60; 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; }