結果

問題 No.246 質問と回答
ユーザー tubo28tubo28
提出日時 2017-01-02 11:34:31
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 57 ms / 2,000 ms
コード長 2,636 bytes
コンパイル時間 13,579 ms
コンパイル使用メモリ 384,740 KB
実行使用メモリ 25,460 KB
平均クエリ数 30.90
最終ジャッジ日時 2024-07-16 20:08:29
合計ジャッジ時間 17,169 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
25,208 KB
testcase_01 AC 49 ms
25,220 KB
testcase_02 AC 50 ms
24,580 KB
testcase_03 AC 51 ms
24,580 KB
testcase_04 AC 53 ms
24,580 KB
testcase_05 AC 51 ms
24,824 KB
testcase_06 AC 48 ms
24,836 KB
testcase_07 AC 51 ms
25,220 KB
testcase_08 AC 49 ms
25,220 KB
testcase_09 AC 51 ms
24,580 KB
testcase_10 AC 51 ms
24,836 KB
testcase_11 AC 50 ms
24,964 KB
testcase_12 AC 52 ms
24,580 KB
testcase_13 AC 51 ms
24,836 KB
testcase_14 AC 57 ms
25,220 KB
testcase_15 AC 53 ms
24,580 KB
testcase_16 AC 51 ms
25,220 KB
testcase_17 AC 52 ms
24,964 KB
testcase_18 AC 53 ms
24,836 KB
testcase_19 AC 52 ms
24,836 KB
testcase_20 AC 51 ms
24,836 KB
testcase_21 AC 52 ms
24,964 KB
testcase_22 AC 55 ms
24,836 KB
testcase_23 AC 53 ms
24,964 KB
testcase_24 AC 53 ms
24,964 KB
testcase_25 AC 52 ms
25,460 KB
testcase_26 AC 52 ms
24,836 KB
testcase_27 AC 52 ms
24,836 KB
testcase_28 AC 52 ms
24,964 KB
testcase_29 AC 51 ms
25,220 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
warning: the item `Write` is imported redundantly
  --> src/main.rs:8:13
   |
8  |         use std::io::Write;
   |             ^^^^^^^^^^^^^^
...
19 |     use std::io::Write;
   |         -------------- the item `Write` is already imported here
   |
   = note: `#[warn(unused_imports)]` on by default

ソースコード

diff #

fn main(){
    let mut sc = Scanner::new();
    let mut left = 0; // le
    let mut right = 1_000_000_010;
    while left + 1 < right {
        let mid = (left + right) / 2;
        println!("? {}", mid);
        use std::io::Write;
        std::io::stdout().flush().unwrap();

        if sc.next::<i32>() == 1 {
            left = mid;
        } else {
            right = mid;
        }
    }

    println!("! {}", left);
    use std::io::Write;
    std::io::stdout().flush().unwrap();
}

#[allow(dead_code)]
struct Scanner {
    buf: Vec<u8>, idx: usize, next: String,
}

#[allow(dead_code)]
impl Scanner {
    fn new() -> Scanner {
        Scanner { buf: vec![], idx: 0, next: String::new() }
    }

    fn next<T: std::str::FromStr>(&mut self) -> T {
        self.wrapped::<T>().unwrap()
    }

    fn vec<T: std::str::FromStr>(&mut self, n: usize) -> Vec<T> {
        let mut res = Vec::<T>::with_capacity(n);
        for _ in 0..n { res.push(self.next()) }
        res
    }

    fn wrapped<T: std::str::FromStr>(&mut self) -> Option<T> {
        if !self.read() {
            None
        } else {
            let res = self.next.parse::<T>().ok();
            self.next.clear();
            res
        }
    }

    fn read(&mut self) -> bool {
        if !self.next.is_empty() {
            true
        } else {
            self.next.clear();
            loop {
                match self.get_char() {
                    Some(c) if !c.is_whitespace() => {
                        self.next.push(c);
                        break;
                    },
                    Some(_) => continue,
                    None => return false,
                }
            }
            loop {
                match self.get_char() {
                    Some(c) if !c.is_whitespace() => self.next.push(c),
                    _ => return true,
                }
            }
        }
    }

    fn get_char(&mut self) -> Option<char> {
        if self.idx >= self.buf.len() {
            self.fill_buf();
            if self.idx >= self.buf.len() { return None }
        }
        self.idx += 1;
        Some(self.buf[self.idx - 1] as char)
    }

    fn fill_buf(&mut self){
        use std::io::BufRead;
        let reader = std::io::stdin();
        let mut buffer = reader.lock();
        let len = match buffer.fill_buf() {
            Ok(bytes) => {
                self.buf.resize(bytes.len(), b'\0');
                self.buf.copy_from_slice(bytes);
                bytes.len() as i32
            },
            Err(_) => -1,
        };
        self.idx = 0;
        if len >= 0 { buffer.consume(len as usize); }
    }
}
0