結果

問題 No.1830 Balanced Majority
ユーザー phsplsphspls
提出日時 2022-11-08 23:14:12
言語 Rust
(1.77.0 + proconio)
結果
WA  
実行時間 -
コード長 1,276 bytes
コンパイル時間 14,566 ms
コンパイル使用メモリ 379,160 KB
実行使用メモリ 25,604 KB
平均クエリ数 7.69
最終ジャッジ日時 2024-07-22 06:52:32
合計ジャッジ時間 14,516 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

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 lower = 1isize;
    println!("? {}", lower);
    let mut lval = String::new();
    std::io::stdin().read_line(&mut lval).ok();
    let lval: isize = lval.trim().parse().unwrap();
    let ldiff = 2*lval - lower;
    let mut upper = n-1;
    println!("? {}", upper);
    let mut uval = String::new();
    std::io::stdin().read_line(&mut uval).ok();
    let uval: isize = uval.trim().parse().unwrap();
    let udiff = 2*uval - upper;
    if ldiff == udiff {
        println!("! {} {}", 2, upper);
        return;
    }
    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 {
        println!("! {} {}", upper+1, n);
    } else {
        println!("! {} {}", 1, upper);
    }
}
0