結果

問題 No.1793 実数当てゲーム
ユーザー akakimidoriakakimidori
提出日時 2021-12-22 04:13:42
言語 Rust
(1.77.0 + proconio)
結果
WA  
実行時間 -
コード長 599 bytes
コンパイル時間 13,881 ms
コンパイル使用メモリ 377,748 KB
実行使用メモリ 39,316 KB
平均クエリ数 8.33
最終ジャッジ日時 2024-09-28 13:34:49
合計ジャッジ時間 21,550 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 TLE -
testcase_03 -- -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

fn read() -> String {
    let mut s = String::new();
    std::io::stdin().read_line(&mut s).unwrap();
    String::from(s.trim())
}

fn run() {
    let mut l = 1f64.powi(-5);
    let mut r = 12.22e74;
    for _ in 0..24 {
        let m = (l * r).sqrt();
        println!("? {:.1000000}", m);
        let ans = read();
        match ans.as_str() {
            "Yes" => r = m,
            "No" => l = m,
            _ => unreachable!(),
        }
    }
    println!("! {:.1000000}", (l * r).sqrt());
}

fn main() {
    let t = read().parse::<u32>().unwrap();
    for _ in 0..t {
        run();
    }
}
0