結果
問題 | No.1042 愚直大学 |
ユーザー | hagitaku4 |
提出日時 | 2020-05-01 21:41:57 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 4 ms / 2,000 ms |
コード長 | 2,679 bytes |
コンパイル時間 | 1,466 ms |
コンパイル使用メモリ | 167,012 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-07 03:43:14 |
合計ジャッジ時間 | 2,293 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 4 ms
5,248 KB |
testcase_01 | AC | 3 ms
5,376 KB |
testcase_02 | AC | 4 ms
5,376 KB |
testcase_03 | AC | 4 ms
5,376 KB |
testcase_04 | AC | 3 ms
5,376 KB |
testcase_05 | AC | 3 ms
5,376 KB |
testcase_06 | AC | 3 ms
5,376 KB |
testcase_07 | AC | 3 ms
5,376 KB |
testcase_08 | AC | 4 ms
5,376 KB |
testcase_09 | AC | 4 ms
5,376 KB |
testcase_10 | AC | 3 ms
5,376 KB |
testcase_11 | AC | 4 ms
5,376 KB |
testcase_12 | AC | 4 ms
5,376 KB |
testcase_13 | AC | 4 ms
5,376 KB |
testcase_14 | AC | 3 ms
5,376 KB |
testcase_15 | AC | 3 ms
5,376 KB |
testcase_16 | AC | 4 ms
5,376 KB |
testcase_17 | AC | 3 ms
5,376 KB |
testcase_18 | AC | 4 ms
5,376 KB |
testcase_19 | AC | 3 ms
5,376 KB |
testcase_20 | AC | 4 ms
5,376 KB |
testcase_21 | AC | 4 ms
5,376 KB |
testcase_22 | AC | 3 ms
5,376 KB |
testcase_23 | AC | 4 ms
5,376 KB |
testcase_24 | AC | 4 ms
5,376 KB |
ソースコード
#include<bits/stdc++.h> #define lint long long int #define rep(i,n) for(int i=0;i<int(n);i++) #define per(i,n) for(int i=n-1;i>=0;i--) #define arep(i,a,n) for(int i=a;i<n;i++) #define sort(a) sort(a.begin(),a.end()) #define reverse(a) reverse(a.begin(),a.end()) #define fill(a,x) fill(a.begin(),a.end(),x) #define eb(data) emplace_back(data) #define pb(data) emplace_back(data) #define mp make_pair #define ALNUM 26 #define vint vector<int> #define F first #define S second #define ALL(data) data.begin(),data.end() #define GEts(s) getline(cin,s); using namespace std; template<typename Rast>inline void out(Rast rast){cout<<rast<<"\n";return;} template<typename Rast>inline void in(Rast& rast){cin>>rast;return;} template<typename T>istream& operator >> (istream& is, vector<T>& vec){for(T& x: vec) is >> x;return is;} template<typename First, typename... Rest>void in(First& first, Rest&... rest){cin >> first;in(rest...);return;} template<typename First, typename... Rest>void out(First first, Rest... rest){cout << first<<" ";out(rest...);return;} template<typename T>T gcd(T a,T b){if(b==0)return a;return gcd(b,a%b);} template<typename T1,typename T2>bool chmax(T1& a,T2 b){if(a<b){a=b;return true;}else{return false;}} template<typename T1,typename T2>bool chmin(T1& a,T2 b){if(a>b){a=b;return true;}else{return false;}} template<typename T>T lcm(T a, T b){return a * b / gcd(a, b);} static const double pi = 3.141592653589793; lint modpow(lint a,lint n,lint p){if(n==1)return a%p;if(n%2==1)return (a*modpow(a,n-1,p))%p;lint t=modpow(a,n/2,p);return (t*t)%p;}//a^n%p lint MOD=pow(10,9)+7; //lint MOD=998244353; lint inf=pow(2,50); int intinf=pow(2,30); /**/int dirx[]={1,0};int diry[]={0,1};//*///右、下 /**int dirx[]={0,1,0,-1};int diry[]={-1,0,1,0};//*///四方位 /**int dirx[]={-1,0,1,1,1,0,-1,-1};int diry[]={-1,-1,-1,0,1,1,1,0};//*///八方位 class unionfind{ public: vector<int> table; vector<int> wod; void init(int size){ table.resize(size); wod.resize(size); rep(i,size)table[i]=i,wod[i]=i; }; int root(int index){ if(table[index]==index)return index; else{ int hoge=root(table[index]); table[index]=hoge; return hoge; } }; bool same(int x,int y){ return(root(x)==root(y)); }; int marge(int x,int y){ int yroot=root(y); int xroot=root(x); if(xroot==yroot)return 0; table[yroot]=xroot; return 0; } }; int main(){ cin.tie(0);ios::sync_with_stdio(false);cout<<std::fixed<<std::setprecision(12); long double p,q; in(p,q); long double ok=1; long double ng=1000000000000000000; rep(i,40000){ long double mid=(ok+ng)/2.0;//n=mid if(mid*mid<=p+q*mid*log2(mid))ok=mid; else ng=mid; } out(ok); return 0; }