結果

問題 No.1972 Modulo Set
ユーザー cutmdocutmdo
提出日時 2022-06-10 21:46:58
言語 Rust
(1.77.0)
結果
TLE  
実行時間 -
コード長 1,987 bytes
コンパイル時間 1,546 ms
コンパイル使用メモリ 188,852 KB
実行使用メモリ 7,100 KB
最終ジャッジ日時 2023-10-21 05:02:28
合計ジャッジ時間 7,022 ms
ジャッジサーバーID
(参考情報)
judge14 / judge9
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,348 KB
testcase_01 AC 1 ms
4,348 KB
testcase_02 AC 1 ms
4,348 KB
testcase_03 AC 3 ms
4,348 KB
testcase_04 AC 4 ms
4,348 KB
testcase_05 AC 5 ms
4,348 KB
testcase_06 AC 6 ms
4,348 KB
testcase_07 AC 10 ms
4,348 KB
testcase_08 AC 5 ms
4,348 KB
testcase_09 AC 2 ms
4,348 KB
testcase_10 AC 4 ms
4,348 KB
testcase_11 AC 9 ms
4,348 KB
testcase_12 AC 3 ms
4,348 KB
testcase_13 AC 2 ms
4,348 KB
testcase_14 AC 3 ms
4,348 KB
testcase_15 AC 12 ms
5,208 KB
testcase_16 AC 13 ms
5,208 KB
testcase_17 AC 5 ms
4,348 KB
testcase_18 AC 1 ms
4,348 KB
testcase_19 AC 11 ms
4,852 KB
testcase_20 AC 13 ms
5,168 KB
testcase_21 AC 6 ms
4,348 KB
testcase_22 AC 11 ms
4,660 KB
testcase_23 AC 32 ms
7,048 KB
testcase_24 AC 19 ms
4,364 KB
testcase_25 AC 28 ms
4,720 KB
testcase_26 AC 15 ms
5,708 KB
testcase_27 AC 40 ms
7,100 KB
testcase_28 TLE -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

use std::collections::HashMap;
use std::io::Write;
/* ----------------------------------------------- */
fn run<W: Write>(sc: &mut scanner::Scanner, out: &mut std::io::BufWriter<W>) {
    let n: usize = sc.next();
    let m: usize = sc.next();
    let v: Vec<usize> = sc.next_vec(n);

    let mut map = HashMap::new();
    for x in v {
        let p = map.entry(x % m).or_insert(0);
        *p += 1
    }
    let mut ans = 0;
    for x in 1..(m + 1) >> 1 {
        ans += std::cmp::max(map.get(&x).unwrap_or(&0), map.get(&(m - x)).unwrap_or(&0));
    }
    ans += std::cmp::min(1, *map.get(&0).unwrap_or(&0));
    if m & 1 == 0 {
        ans += std::cmp::min(1, *map.get(&(m >> 1)).unwrap_or(&0));
    }
    writeln!(out, "{:?}", ans).ok();
}

/* ----------------------------------------------- */
#[allow(dead_code)]
mod scanner {
    use std::str::FromStr;
    pub struct Scanner<'a> {
        it: std::str::SplitWhitespace<'a>,
    }
    impl<'a> Scanner<'a> {
        pub fn new(s: &'a String) -> Scanner<'a> {
            Scanner {
                it: s.split_whitespace(),
            }
        }
        pub fn next<T: FromStr>(&mut self) -> T {
            self.it.next().unwrap().parse::<T>().ok().unwrap()
        }
        pub fn next_bytes(&mut self) -> Vec<u8> {
            self.it.next().unwrap().bytes().collect()
        }
        pub fn next_chars(&mut self) -> Vec<char> {
            self.it.next().unwrap().chars().collect()
        }
        pub fn next_vec<T: FromStr>(&mut self, len: usize) -> Vec<T> {
            (0..len).map(|_| self.next()).collect()
        }
    }
}
/* ----------------------------------------------- */
fn main() {
    use std::io::Read;
    let mut s = String::new();
    std::io::stdin().read_to_string(&mut s).unwrap();
    let mut sc = scanner::Scanner::new(&s);
    let out = std::io::stdout();
    let mut out = std::io::BufWriter::new(out.lock());
    run(&mut sc, &mut out);
}
/* ----------------------------------------------- */
0