結果

問題 No.2154 あさかつの参加人数
ユーザー phsplsphspls
提出日時 2022-12-20 00:53:47
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 608 ms / 2,000 ms
コード長 813 bytes
コンパイル時間 13,152 ms
コンパイル使用メモリ 379,860 KB
実行使用メモリ 13,596 KB
最終ジャッジ日時 2024-11-18 01:39:37
合計ジャッジ時間 24,903 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 594 ms
13,464 KB
testcase_01 AC 601 ms
13,568 KB
testcase_02 AC 601 ms
13,568 KB
testcase_03 AC 608 ms
13,568 KB
testcase_04 AC 603 ms
13,596 KB
testcase_05 AC 56 ms
7,576 KB
testcase_06 AC 290 ms
10,744 KB
testcase_07 AC 364 ms
8,020 KB
testcase_08 AC 410 ms
7,920 KB
testcase_09 AC 275 ms
6,816 KB
testcase_10 AC 335 ms
7,296 KB
testcase_11 AC 535 ms
12,048 KB
testcase_12 AC 365 ms
9,744 KB
testcase_13 AC 150 ms
6,656 KB
testcase_14 AC 355 ms
10,368 KB
testcase_15 AC 445 ms
7,536 KB
testcase_16 AC 401 ms
10,240 KB
testcase_17 AC 354 ms
11,196 KB
testcase_18 AC 468 ms
11,752 KB
testcase_19 AC 58 ms
5,248 KB
testcase_20 AC 444 ms
9,856 KB
testcase_21 AC 254 ms
5,248 KB
testcase_22 AC 497 ms
5,888 KB
testcase_23 AC 447 ms
11,192 KB
testcase_24 AC 541 ms
12,348 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

    let mut mapping = vec![0isize; n+1];
    for &(l, r) in queries.iter() {
        mapping[l] += 1;
        mapping[r+1] -= 1;
    }
    for i in 0..n {
        mapping[i+1] += mapping[i];
    }
    for i in 0..n {
        println!("{}", mapping[i]);
    }
}
0