結果

問題 No.1830 Balanced Majority
ユーザー phsplsphspls
提出日時 2022-10-18 21:24:49
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 24 ms / 2,000 ms
コード長 1,269 bytes
コンパイル時間 12,113 ms
コンパイル使用メモリ 396,664 KB
実行使用メモリ 25,368 KB
平均クエリ数 7.69
最終ジャッジ日時 2024-06-29 03:50:40
合計ジャッジ時間 15,618 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

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