結果
問題 | No.1972 Modulo Set |
ユーザー | nephrologist |
提出日時 | 2022-06-11 11:57:11 |
言語 | Rust (1.77.0 + proconio) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,109 bytes |
コンパイル時間 | 15,240 ms |
コンパイル使用メモリ | 379,468 KB |
実行使用メモリ | 7,356 KB |
最終ジャッジ日時 | 2024-09-21 21:05:30 |
合計ジャッジ時間 | 15,680 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,248 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 3 ms
5,376 KB |
testcase_04 | AC | 4 ms
5,376 KB |
testcase_05 | WA | - |
testcase_06 | AC | 7 ms
5,376 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 1 ms
5,376 KB |
testcase_10 | WA | - |
testcase_11 | AC | 11 ms
5,376 KB |
testcase_12 | AC | 3 ms
5,376 KB |
testcase_13 | AC | 2 ms
5,376 KB |
testcase_14 | AC | 2 ms
5,376 KB |
testcase_15 | AC | 13 ms
5,376 KB |
testcase_16 | AC | 14 ms
5,376 KB |
testcase_17 | AC | 5 ms
5,376 KB |
testcase_18 | AC | 1 ms
5,376 KB |
testcase_19 | AC | 12 ms
5,376 KB |
testcase_20 | AC | 14 ms
5,376 KB |
testcase_21 | AC | 7 ms
5,376 KB |
testcase_22 | AC | 11 ms
5,376 KB |
testcase_23 | AC | 18 ms
7,076 KB |
testcase_24 | AC | 8 ms
5,376 KB |
testcase_25 | AC | 10 ms
5,376 KB |
testcase_26 | WA | - |
testcase_27 | AC | 19 ms
7,132 KB |
testcase_28 | AC | 8 ms
5,376 KB |
testcase_29 | AC | 10 ms
5,376 KB |
testcase_30 | AC | 15 ms
6,816 KB |
testcase_31 | AC | 2 ms
5,376 KB |
testcase_32 | AC | 13 ms
6,496 KB |
testcase_33 | AC | 20 ms
7,356 KB |
testcase_34 | AC | 20 ms
7,356 KB |
testcase_35 | AC | 20 ms
7,356 KB |
testcase_36 | AC | 21 ms
7,356 KB |
コンパイルメッセージ
warning: variable does not need to be mutable --> src/main.rs:8:13 | 8 | let mut s = { | ----^ | | | help: remove this `mut` ... 53 | / input!{ 54 | | n:usize,m:i64,a:[i64;n], 55 | | } | |_____- in this macro invocation | = note: `#[warn(unused_mut)]` on by default = note: this warning originates in the macro `input` (in Nightly builds, run with -Z macro-backtrace for more info) warning: variable does not need to be mutable --> src/main.rs:72:13 | 72 | let mut rem = m-key; | ----^^^ | | | help: remove this `mut` warning: variable does not need to be mutable --> src/main.rs:78:17 | 78 | let mut vval = *memo.get(&rem).unwrap(); | -----^^^^ | | | help: remove this `mut`
ソースコード
//proconio macro_rules! input { (source = $s:expr, $($r:tt)*) => { let mut iter = $s.split_whitespace(); input_inner!{iter, $($r)*} }; ($($r:tt)*) => { let mut s = { use std::io::Read; let mut s = String::new(); std::io::stdin().read_to_string(&mut s).unwrap(); s }; let mut iter = s.split_whitespace(); input_inner!{iter, $($r)*} }; } macro_rules! input_inner { ($iter:expr) => {}; ($iter:expr, ) => {}; ($iter:expr, $var:ident : $t:tt $($r:tt)*) => { let $var = read_value!($iter, $t); input_inner!{$iter $($r)*} }; } macro_rules! read_value { ($iter:expr, ( $($t:tt),* )) => { ( $(read_value!($iter, $t)),* ) }; ($iter:expr, [ $t:tt ; $len:expr ]) => { (0..$len).map(|_| read_value!($iter, $t)).collect::<Vec<_>>() }; ($iter:expr, chars) => { read_value!($iter, String).chars().collect::<Vec<char>>() }; ($iter:expr, usize1) => { read_value!($iter, usize) - 1 }; ($iter:expr, $t:ty) => { $iter.next().unwrap().parse::<$t>().expect("Parse error") }; } fn main() { input!{ n:usize,m:i64,a:[i64;n], } let mut ans:i64=0; let mut flag:bool = true; let mut memo: std::collections::HashMap<i64,i64> = std::collections::HashMap::new(); for t in &a{ if t%m==0{ if flag { ans+=1; flag=false; } continue; } *memo.entry(t%m).or_default()+=1_i64; } for (&key,&val) in memo.iter(){ let mut rem = m-key; if rem==key{ ans+=val; continue; } if memo.get(&rem) != None { let mut vval = *memo.get(&rem).unwrap(); if val>vval{ ans+=val; } else if val == vval{ if key<rem{ ans+=val; } } }else{ ans+=val; } } println!("{}", ans) }