結果
問題 | No.2055 12x34... |
ユーザー | H20 |
提出日時 | 2022-08-30 16:01:58 |
言語 | Rust (1.77.0 + proconio) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,714 bytes |
コンパイル時間 | 23,108 ms |
コンパイル使用メモリ | 377,792 KB |
実行使用メモリ | 16,560 KB |
最終ジャッジ日時 | 2024-11-07 10:31:32 |
合計ジャッジ時間 | 16,599 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,248 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 31 ms
9,404 KB |
testcase_13 | AC | 55 ms
16,560 KB |
testcase_14 | AC | 24 ms
9,136 KB |
testcase_15 | AC | 24 ms
9,144 KB |
testcase_16 | AC | 57 ms
16,488 KB |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | AC | 40 ms
10,148 KB |
testcase_24 | AC | 39 ms
10,148 KB |
testcase_25 | AC | 40 ms
10,152 KB |
testcase_26 | AC | 39 ms
10,276 KB |
testcase_27 | AC | 39 ms
10,148 KB |
testcase_28 | AC | 42 ms
10,148 KB |
testcase_29 | AC | 39 ms
10,272 KB |
testcase_30 | AC | 39 ms
10,152 KB |
testcase_31 | AC | 39 ms
10,148 KB |
testcase_32 | AC | 41 ms
10,148 KB |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | WA | - |
testcase_39 | WA | - |
testcase_40 | WA | - |
testcase_41 | WA | - |
testcase_42 | WA | - |
ソースコード
use std::collections::HashMap; //USE https://mirrorless-camera.info/column/14417.html macro_rules! input { ($($r:tt)*) => { let mut bytes = std::io::Read::bytes(std::io::BufReader::new(std::io::stdin())); let mut next = move |is_word: bool| -> String{ if is_word { bytes .by_ref() .map(|r|r.unwrap() as char) .skip_while(|c|c.is_whitespace()) .take_while(|c|!c.is_whitespace()) .collect() } else { bytes .by_ref() .map(|r|r.unwrap() as char) .skip_while(|c| c == &'\n') .take_while(|c| c != &'\n') .collect() } }; input_inner!{next, $($r)*}; }; } macro_rules! input_inner { ($next:expr) => {}; ($next:expr, ) => {}; ($next:expr, static $var:ident : $t:tt $($rest:tt)*) => { $var = read_value!($next, $t); input_inner!{$next $($rest)*} }; ($next:expr, mut $var:ident : $t:tt $($rest:tt)*) => { let mut $var = read_value!($next, $t); input_inner!{$next $($rest)*} }; ($next:expr, $var:ident : $t:tt $($rest:tt)*) => { let $var = read_value!($next, $t); input_inner!{$next $($rest)*} }; } macro_rules! read_value { ($next:expr, ( $($t:tt),* )) => { ( $(read_value!($next, $t)),* ) }; ($next:expr, [ $t:tt ; all ]) => { { let mut str = $next(false); str.split_whitespace().map(|it| it.parse::<$t>().unwrap()).collect::<Vec<_>>() } }; ($next:expr, [ $t:tt ; $len:expr ]) => { (0..$len as usize).map(|_| read_value!($next, $t)).collect::<Vec<_>>() }; ($next:expr, chars) => { read_value!($next, String).chars().collect::<Vec<char>>() }; ($next:expr, lines) => { { let mut vec = Vec::new(); let mut str = $next(false); while str != "" { vec.push(str); str = $next(false); } vec } }; ($next:expr, line) => { $next(false) }; ($next:expr, usize1) => { read_value!($next, usize) - 1 }; ($next:expr, $t:ty) => { $next(true).parse::<$t>().expect("Parse error") }; } fn main() { input! { n : usize, a : [usize; n] } let mut hm: HashMap<usize, usize> = HashMap::new(); let mut ans = 0; for a in a{ *hm.entry(a).or_default() += *hm.entry(a-1).or_default()+1; ans = (ans+hm[&(a-1)])%998244353; } println!("{}", ans); }