結果
問題 | No.1793 実数当てゲーム |
ユーザー |
![]() |
提出日時 | 2021-12-22 00:13:48 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 686 bytes |
コンパイル時間 | 2,123 ms |
コンパイル使用メモリ | 194,780 KB |
最終ジャッジ日時 | 2025-01-27 04:31:32 |
ジャッジサーバーID (参考情報) |
judge2 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | WA * 18 |
ソースコード
#line 1 "main.cpp" #include<bits/stdc++.h> using namespace std; using lint=long long; int main(){ lint t; cin>>t; auto f=[&](long double x)->bool{ cout<<"? "<<x<<endl<<flush; string s; cin>>s; return s=="Yes"; }; while(t--){ long double x=1; lint cnt=24; while(cnt){ cnt--; if(!f(exp(x))){ x*=2; }else{ break; } } long double l=0,r=x; while(cnt){ cnt--; long double m=(l+r)/2; if(!f(exp(m)))l=m; else r=m; } cout<<exp((r+l)/2)<<endl; } }