結果

問題 No.2252 Find Zero
ユーザー haihamabossuhaihamabossu
提出日時 2023-03-24 21:46:09
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 72 ms / 2,000 ms
コード長 810 bytes
コンパイル時間 12,466 ms
コンパイル使用メモリ 379,712 KB
実行使用メモリ 25,232 KB
平均クエリ数 78.17
最終ジャッジ日時 2024-09-18 16:57:40
合計ジャッジ時間 14,893 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 59 ms
25,232 KB
testcase_01 AC 72 ms
24,592 KB
testcase_02 AC 50 ms
24,592 KB
testcase_03 AC 61 ms
25,232 KB
testcase_04 AC 52 ms
25,220 KB
testcase_05 AC 49 ms
24,836 KB
testcase_06 AC 51 ms
25,172 KB
testcase_07 AC 51 ms
25,220 KB
testcase_08 AC 58 ms
24,848 KB
testcase_09 AC 62 ms
24,848 KB
testcase_10 AC 52 ms
24,592 KB
testcase_11 AC 51 ms
25,220 KB
testcase_12 AC 52 ms
24,836 KB
testcase_13 AC 54 ms
24,836 KB
testcase_14 AC 51 ms
24,580 KB
testcase_15 AC 51 ms
24,580 KB
testcase_16 AC 50 ms
24,836 KB
testcase_17 AC 50 ms
24,836 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

use std::io::Write;

fn query(x: usize, y: usize) -> usize {
    println!("? {} {}", x, y);
    std::io::stdout().flush().unwrap();
    let mut input = String::new();
    std::io::stdin().read_line(&mut input).ok();
    let mut input = input.split_whitespace();
    input.next().unwrap().parse().unwrap()
}

fn main() {
    let mut input = String::new();
    std::io::stdin().read_line(&mut input).ok();
    let mut input = input.split_whitespace();
    let n: usize = input.next().unwrap().parse().unwrap();
    for i in 0..(n / 2) {
        let x = i * 2;
        let y = x + 1;
        let z = query(x, y);
        if z == x {
            println!("! {}", y);
            return;
        } else if z == y {
            println!("! {}", x);
            return;
        }
    }
    println!("! {}", n - 1);
}
0