結果
問題 |
No.456 Millions of Submits!
|
ユーザー |
![]() |
提出日時 | 2021-04-02 01:05:37 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 797 bytes |
コンパイル時間 | 1,673 ms |
コンパイル使用メモリ | 166,232 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-12-21 09:01:11 |
合計ジャッジ時間 | 8,747 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 4 WA * 9 |
ソースコード
#include <bits/stdc++.h> using namespace std; int main(){ int m; cin>>m; double a,b,t; double e=exp(1); double ipsilon=pow(10,-10); double upper,lower,middle; for(int i=0;i<m;++i){ cin>>a>>b>>t; if(b==0){ middle=pow(t,1.0/a); goto travel; } if(a==0){ middle=pow(e,pow(t,1.0/b)); goto travel; } upper=10; lower=1; t=a/b*pow(t,1.0/b); while(upper-lower>ipsilon){ middle=(upper+lower)/2.0; if(middle*log(middle)<t){ lower=middle; }else{ upper=middle; } } middle=pow(middle,b/a); travel:{} printf("%.10f",middle); cout<<endl; } }