結果

問題 No.1557 Binary Variable
ユーザー phsplsphspls
提出日時 2022-10-28 10:50:43
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 54 ms / 2,000 ms
コード長 769 bytes
コンパイル時間 10,719 ms
コンパイル使用メモリ 379,292 KB
実行使用メモリ 6,528 KB
最終ジャッジ日時 2024-07-05 16:49:28
合計ジャッジ時間 15,581 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
5,248 KB
testcase_01 AC 46 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 39 ms
6,400 KB
testcase_05 AC 37 ms
6,144 KB
testcase_06 AC 36 ms
6,272 KB
testcase_07 AC 37 ms
6,400 KB
testcase_08 AC 42 ms
6,144 KB
testcase_09 AC 41 ms
6,272 KB
testcase_10 AC 45 ms
6,016 KB
testcase_11 AC 45 ms
6,400 KB
testcase_12 AC 40 ms
6,272 KB
testcase_13 AC 46 ms
6,528 KB
testcase_14 AC 47 ms
6,272 KB
testcase_15 AC 47 ms
6,528 KB
testcase_16 AC 47 ms
6,272 KB
testcase_17 AC 48 ms
6,272 KB
testcase_18 AC 49 ms
6,400 KB
testcase_19 AC 54 ms
6,272 KB
testcase_20 AC 50 ms
6,272 KB
testcase_21 AC 52 ms
6,400 KB
testcase_22 AC 51 ms
6,272 KB
testcase_23 AC 53 ms
6,400 KB
testcase_24 AC 50 ms
6,272 KB
testcase_25 AC 51 ms
6,272 KB
testcase_26 AC 51 ms
6,272 KB
testcase_27 AC 51 ms
6,272 KB
testcase_28 AC 50 ms
6,272 KB
testcase_29 AC 51 ms
6,272 KB
testcase_30 AC 51 ms
6,272 KB
testcase_31 AC 51 ms
6,400 KB
testcase_32 AC 53 ms
6,272 KB
testcase_33 AC 50 ms
6,272 KB
testcase_34 AC 1 ms
5,376 KB
testcase_35 AC 1 ms
5,376 KB
testcase_36 AC 1 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

fn main() {
    let mut nm = String::new();
    std::io::stdin().read_line(&mut nm).ok();
    let nm: Vec<usize> = nm.trim().split_whitespace().map(|s| s.parse().unwrap()).collect();
    let n = nm[0];
    let m = nm[1];
    let mut pairs = (0..m).map(|_| {
            let mut temp = String::new();
            std::io::stdin().read_line(&mut temp).ok();
            let temp: Vec<isize> = temp.trim().split_whitespace().map(|s| s.parse().unwrap()).collect();
            (temp[0]-1, temp[1]-1)
        })
        .collect::<Vec<_>>();

    pairs.sort_by_key(|&(_, y)| y);
    let mut cur = -1;
    let mut result = 0usize;
    for &(l, r) in pairs.iter() {
        if cur >= l { continue; }
        result += 1;
        cur = r;
    }
    println!("{}", n-result);
}
0