結果

問題 No.182 新規性の虜
ユーザー m0ntBL4Ncm0ntBL4Nc
提出日時 2019-10-10 16:14:23
言語 Rust
(1.77.0 + proconio)
結果
MLE  
実行時間 -
コード長 1,397 bytes
コンパイル時間 12,273 ms
コンパイル使用メモリ 393,024 KB
実行使用メモリ 813,224 KB
最終ジャッジ日時 2024-11-21 12:58:11
合計ジャッジ時間 31,618 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 1 ms
6,816 KB
testcase_02 AC 1 ms
6,820 KB
testcase_03 MLE -
testcase_04 MLE -
testcase_05 MLE -
testcase_06 MLE -
testcase_07 MLE -
testcase_08 MLE -
testcase_09 MLE -
testcase_10 MLE -
testcase_11 MLE -
testcase_12 MLE -
testcase_13 AC 5 ms
6,692 KB
testcase_14 AC 1 ms
6,692 KB
testcase_15 AC 1 ms
6,688 KB
testcase_16 AC 1 ms
6,688 KB
testcase_17 AC 1 ms
6,696 KB
testcase_18 AC 5 ms
6,692 KB
testcase_19 AC 4 ms
6,692 KB
testcase_20 AC 3 ms
6,692 KB
testcase_21 AC 6 ms
6,688 KB
testcase_22 AC 4 ms
6,688 KB
testcase_23 AC 1 ms
6,688 KB
testcase_24 AC 7 ms
6,692 KB
testcase_25 AC 5 ms
6,688 KB
testcase_26 MLE -
testcase_27 AC 5 ms
6,692 KB
evil01.txt MLE -
evil02.txt MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

fn getline() -> String {
    let mut __ret = String::new();
    std::io::stdin().read_line(&mut __ret).ok();
    return __ret;
}

fn main() {
    let mut unique_number_count = 0;
    let number_of_integer: usize = getline().trim().parse().unwrap();
    
    let line = getline();
    let params: Vec<_> = line.trim().split(' ').collect();

    let mut v: Vec<i32> = Vec::new();

    for i in 0..number_of_integer {
        let number = params[i].parse().unwrap();
        v.push(number);
    }

    // vの中でmaxを探す
    let mut max = 0;

    for i in 0..number_of_integer {
        if v[i] > max {
            max = v[i];
        }
    }

    // 要素数maxの新しいvectorを作成する
    let mut number_appear_count_vector: Vec<i32> = Vec::new();
    for _ in 0..max {
        number_appear_count_vector.push(0);
    }

    let number_appear_count_vector_length = number_appear_count_vector.len();

    // vを走査し, vector[v[i]-1] += 1
    for i in 0..number_of_integer {
        let increment_index = (v[i] - 1) as usize; 
        number_appear_count_vector[increment_index] += 1;
    }

    // vectorのなかで vector[i] == 1 を見つけるたび, unique_number_count += 1
    for i in 0..number_appear_count_vector_length {
        if number_appear_count_vector[i] == 1 {
            unique_number_count += 1;
        }
    }

    println!("{}", unique_number_count);
}
0