結果

問題 No.1793 実数当てゲーム
ユーザー 👑 NachiaNachia
提出日時 2021-12-22 00:15:14
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 115 ms / 2,000 ms
コード長 830 bytes
コンパイル時間 884 ms
コンパイル使用メモリ 86,532 KB
実行使用メモリ 25,476 KB
平均クエリ数 2230.56
最終ジャッジ日時 2024-09-28 13:21:42
合計ジャッジ時間 3,744 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 23 ms
24,836 KB
testcase_01 AC 23 ms
25,220 KB
testcase_02 AC 99 ms
24,836 KB
testcase_03 AC 101 ms
24,836 KB
testcase_04 AC 101 ms
25,208 KB
testcase_05 AC 94 ms
25,220 KB
testcase_06 AC 96 ms
24,964 KB
testcase_07 AC 92 ms
25,220 KB
testcase_08 AC 93 ms
25,476 KB
testcase_09 AC 93 ms
24,836 KB
testcase_10 AC 93 ms
24,836 KB
testcase_11 AC 93 ms
24,580 KB
testcase_12 AC 100 ms
24,836 KB
testcase_13 AC 113 ms
24,836 KB
testcase_14 AC 112 ms
24,836 KB
testcase_15 AC 101 ms
25,220 KB
testcase_16 AC 115 ms
24,580 KB
testcase_17 AC 99 ms
24,580 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

// 日本語を読めてませんでした…

#include <iostream>
#include <vector>
#include <algorithm>
#include <cmath>
using namespace std;
using i32 = int32_t;
using u32 = uint32_t;
using i64 = int64_t;
using u64 = uint64_t;
#define rep(i,n) for(int i=0; i<(n); i++)

int main() {
    cout.precision(10);
    fixed(cout);
    int T; cin >> T;
    while(T--){
        double l = -6.0 * log(10);
        double r = log(12.2199999) + 74.0 * log(10);
        rep(t,24){
            double m = (l+r) / 2;
            double em = exp(m);
            cout << "? " << em << endl << flush;
            string res; cin >> res;
            if(res == "-1") return 0;
            if(res == "Yes") l = m;
            else r = m;
        }
        double m = (l+r)/2;
        cout << "! " << exp(m) << endl << flush;
    }
    return 0;
}
0