結果

問題 No.1972 Modulo Set
ユーザー fukafukatanifukafukatani
提出日時 2022-06-18 08:56:41
言語 Rust
(1.77.0)
結果
WA  
実行時間 -
コード長 1,343 bytes
コンパイル時間 1,385 ms
コンパイル使用メモリ 185,720 KB
実行使用メモリ 7,064 KB
最終ジャッジ日時 2024-04-18 02:07:37
合計ジャッジ時間 3,308 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 1 ms
6,944 KB
testcase_10 WA -
testcase_11 AC 11 ms
6,940 KB
testcase_12 WA -
testcase_13 AC 1 ms
6,944 KB
testcase_14 AC 2 ms
6,944 KB
testcase_15 AC 13 ms
6,944 KB
testcase_16 AC 14 ms
6,944 KB
testcase_17 WA -
testcase_18 AC 1 ms
6,944 KB
testcase_19 AC 12 ms
6,940 KB
testcase_20 AC 15 ms
6,944 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 19 ms
6,952 KB
testcase_24 AC 8 ms
6,940 KB
testcase_25 AC 11 ms
6,940 KB
testcase_26 WA -
testcase_27 AC 19 ms
6,972 KB
testcase_28 AC 8 ms
6,944 KB
testcase_29 AC 10 ms
6,944 KB
testcase_30 AC 16 ms
6,940 KB
testcase_31 AC 2 ms
6,940 KB
testcase_32 AC 14 ms
6,940 KB
testcase_33 AC 21 ms
7,060 KB
testcase_34 AC 20 ms
7,060 KB
testcase_35 AC 20 ms
7,064 KB
testcase_36 AC 20 ms
7,060 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
warning: unused variable: `n`
  --> main.rs:20:10
   |
20 |     let (n, m) = (v[0], v[1]);
   |          ^ help: if this is intentional, prefix it with an underscore: `_n`
   |
   = note: `#[warn(unused_variables)]` on by default

warning: 1 warning emitted

ソースコード

diff #

#![allow(unused_imports)]
use std::cmp::*;
use std::collections::*;
use std::io::Write;
use std::ops::Bound::*;

#[allow(unused_macros)]
macro_rules! debug {
    ($($e:expr),*) => {
        #[cfg(debug_assertions)]
        $({
            let (e, mut err) = (stringify!($e), std::io::stderr());
            writeln!(err, "{} = {:?}", e, $e).unwrap()
        })*
    };
}

fn main() {
    let v = read_vec::<i64>();
    let (n, m) = (v[0], v[1]);
    let a = read_vec::<i64>();

    let mut a_count = HashMap::new();
    for aa in a {
        *a_count.entry(aa % m).or_insert(0) += 1;
    }

    let mut ans = 0;
    ans += min(2, 2 * *a_count.get(&0).unwrap_or(&0));

    for (&k, &v) in &a_count {
        if k == 0 {
            continue;
        }
        if let Some(&x) = a_count.get(&(m - k)) {
            if x == m - k {
                ans += 2 * v;
            } else {
                ans += max(v, x);
            }
        } else {
            ans += 2 * v;
        }
    }
    ans /= 2;

    println!("{}", ans);
}

fn read<T: std::str::FromStr>() -> T {
    let mut s = String::new();
    std::io::stdin().read_line(&mut s).ok();
    s.trim().parse().ok().unwrap()
}

fn read_vec<T: std::str::FromStr>() -> Vec<T> {
    read::<String>()
        .split_whitespace()
        .map(|e| e.parse().ok().unwrap())
        .collect()
}
0