結果

問題 No.2154 あさかつの参加人数
ユーザー naut3naut3
提出日時 2023-09-30 10:14:13
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 114 ms / 2,000 ms
コード長 1,878 bytes
コンパイル時間 15,362 ms
コンパイル使用メモリ 379,328 KB
実行使用メモリ 40,440 KB
最終ジャッジ日時 2024-07-23 04:20:06
合計ジャッジ時間 23,832 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
40,320 KB
testcase_01 AC 107 ms
40,320 KB
testcase_02 AC 107 ms
40,364 KB
testcase_03 AC 104 ms
40,440 KB
testcase_04 AC 107 ms
40,236 KB
testcase_05 AC 26 ms
5,376 KB
testcase_06 AC 68 ms
18,028 KB
testcase_07 AC 60 ms
26,232 KB
testcase_08 AC 66 ms
30,024 KB
testcase_09 AC 34 ms
21,760 KB
testcase_10 AC 54 ms
23,780 KB
testcase_11 AC 92 ms
36,092 KB
testcase_12 AC 67 ms
24,064 KB
testcase_13 AC 34 ms
10,112 KB
testcase_14 AC 69 ms
22,856 KB
testcase_15 AC 61 ms
28,608 KB
testcase_16 AC 74 ms
27,408 KB
testcase_17 AC 73 ms
22,656 KB
testcase_18 AC 83 ms
29,516 KB
testcase_19 AC 9 ms
5,888 KB
testcase_20 AC 76 ms
31,104 KB
testcase_21 AC 30 ms
19,572 KB
testcase_22 AC 58 ms
36,736 KB
testcase_23 AC 81 ms
30,412 KB
testcase_24 AC 93 ms
35,448 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#![allow(non_snake_case, unused_imports, unused_must_use)]
use std::io::{self, prelude::*};
use std::str;

fn main() {
    let (stdin, stdout) = (io::stdin(), io::stdout());
    let mut scan = Scanner::new(stdin.lock());
    let mut out = io::BufWriter::new(stdout.lock());

    macro_rules! input {
        ($T: ty) => {
            scan.token::<$T>()
        };
        ($T: ty, $N: expr) => {
            (0..$N).map(|_| scan.token::<$T>()).collect::<Vec<_>>()
        };
    }

    let N = input!(usize);
    let M = input!(usize);

    let mut cumsum: Vec<isize> = vec![0; N + 2];

    for _ in 0..M {
        let l = input!(usize);
        let r = input!(usize);

        cumsum[r] += 1;
        cumsum[l + 1] -= 1;
    }

    let mut now = 0;
    let mut ans = vec![];

    for i in 1..=N {
        now += cumsum[i];
        ans.push(now);
    }

    writeln!(
        out,
        "{}",
        ans.iter()
            .rev()
            .map(|x| x.to_string())
            .collect::<Vec<_>>()
            .join("\n")
    );
}

struct Scanner<R> {
    reader: R,
    buf_str: Vec<u8>,
    buf_iter: str::SplitWhitespace<'static>,
}
impl<R: BufRead> Scanner<R> {
    fn new(reader: R) -> Self {
        Self {
            reader,
            buf_str: vec![],
            buf_iter: "".split_whitespace(),
        }
    }
    fn token<T: str::FromStr>(&mut self) -> T {
        loop {
            if let Some(token) = self.buf_iter.next() {
                return token.parse().ok().expect("Failed parse");
            }
            self.buf_str.clear();
            self.reader
                .read_until(b'\n', &mut self.buf_str)
                .expect("Failed read");
            self.buf_iter = unsafe {
                let slice = str::from_utf8_unchecked(&self.buf_str);
                std::mem::transmute(slice.split_whitespace())
            }
        }
    }
}
0