結果

問題 No.1793 実数当てゲーム
ユーザー akakimidoriakakimidori
提出日時 2024-09-15 19:32:53
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 97 ms / 2,000 ms
コード長 597 bytes
コンパイル時間 13,499 ms
コンパイル使用メモリ 377,688 KB
実行使用メモリ 25,488 KB
平均クエリ数 2230.56
最終ジャッジ日時 2024-09-28 13:43:39
合計ジャッジ時間 16,948 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
25,232 KB
testcase_01 AC 25 ms
25,232 KB
testcase_02 AC 92 ms
24,848 KB
testcase_03 AC 92 ms
24,604 KB
testcase_04 AC 92 ms
24,604 KB
testcase_05 AC 90 ms
24,848 KB
testcase_06 AC 91 ms
24,976 KB
testcase_07 AC 92 ms
25,184 KB
testcase_08 AC 91 ms
24,976 KB
testcase_09 AC 92 ms
25,488 KB
testcase_10 AC 93 ms
25,208 KB
testcase_11 AC 93 ms
25,476 KB
testcase_12 AC 93 ms
25,220 KB
testcase_13 AC 94 ms
24,836 KB
testcase_14 AC 93 ms
25,220 KB
testcase_15 AC 97 ms
24,836 KB
testcase_16 AC 94 ms
25,220 KB
testcase_17 AC 92 ms
24,836 KB
権限があれば一括ダウンロードができます

ソースコード

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 = 0.0000099999;
    let mut r = 12.22f64 * 10f64.powi(74);
    for _ in 0..24 {
        let m = (l * r).sqrt();
        println!("? {}", m);
        let ans = read();
        match ans.as_str() {
            "Yes" => l = m,
            "No" => r = m,
            _ => unreachable!(),
        }
    }
    println!("! {}", (l * r).sqrt());
}

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