結果

問題 No.1830 Balanced Majority
ユーザー phsplsphspls
提出日時 2022-10-12 00:48:45
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 24 ms / 2,000 ms
コード長 1,252 bytes
コンパイル時間 13,472 ms
コンパイル使用メモリ 379,452 KB
実行使用メモリ 25,220 KB
平均クエリ数 7.54
最終ジャッジ日時 2024-06-25 19:21:33
合計ジャッジ時間 15,505 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 23 ms
24,964 KB
testcase_01 AC 20 ms
25,220 KB
testcase_02 AC 21 ms
24,964 KB
testcase_03 AC 21 ms
25,220 KB
testcase_04 AC 20 ms
25,220 KB
testcase_05 AC 21 ms
24,580 KB
testcase_06 AC 20 ms
24,580 KB
testcase_07 AC 23 ms
24,580 KB
testcase_08 AC 21 ms
24,964 KB
testcase_09 AC 21 ms
24,836 KB
testcase_10 AC 21 ms
24,580 KB
testcase_11 AC 23 ms
24,836 KB
testcase_12 AC 22 ms
24,836 KB
testcase_13 AC 24 ms
24,580 KB
testcase_14 AC 24 ms
25,220 KB
testcase_15 AC 24 ms
25,220 KB
testcase_16 AC 23 ms
24,964 KB
testcase_17 AC 23 ms
25,220 KB
testcase_18 AC 21 ms
24,568 KB
testcase_19 AC 21 ms
25,220 KB
testcase_20 AC 20 ms
25,220 KB
testcase_21 AC 22 ms
25,220 KB
testcase_22 AC 22 ms
24,952 KB
testcase_23 AC 24 ms
24,836 KB
testcase_24 AC 23 ms
24,836 KB
testcase_25 AC 20 ms
25,220 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

fn main() {
    let mut n = String::new();
    std::io::stdin().read_line(&mut n).ok();
    let n: isize = n.trim().parse().unwrap();

    let mut upper = n-1;
    let mut lower = 1isize;
    println!("? {}", lower);
    let mut sl = String::new();
    std::io::stdin().read_line(&mut sl).ok();
    let sl: isize = sl.trim().parse().unwrap();
    let sl = sl * 2 - 1;
    println!("? {}", upper);
    let mut sr = String::new();
    std::io::stdin().read_line(&mut sr).ok();
    let sr: isize = sr.trim().parse().unwrap();
    let sr = sr * 2 - (n - 1);
    if sl == sr {
        println!("! {} {}", lower+1, upper);
        return;
    }
    let pm = -sl;
    while lower < upper {
        let middle = (upper + lower) / 2;
        println!("? {}", middle);
        let mut sl = String::new();
        std::io::stdin().read_line(&mut sl).ok();
        let sl: isize = sl.trim().parse().unwrap();
        let sl = sl * 2 - middle;
        if sl == 0 {
            lower = middle;
            upper = middle;
        } else if sl * pm < 0 {
            lower = middle;
        } else {
            upper = middle;
        }
    }
    if lower >= n/2 {
        println!("! {} {}", 1, lower);
    } else {
        println!("! {} {}", lower+1, n);
    }
}
0