use std::collections::*; #[allow(unused)] struct Scanner { stack: VecDeque, input: R, } impl Scanner { fn new(input: R) -> Self { Self { stack: VecDeque::::new(), input: input, } } fn take(&mut self) -> Option { if let Some(s) = self.stack.pop_front() { return Some(s); } self.enqueue_line(); self.stack.pop_front() } fn enqueue(&mut self, t: String) { t.trim() .split_ascii_whitespace() .for_each(|s| self.stack.push_back(s.to_owned())); } fn enqueue_line(&mut self) { let mut t = String::new(); self.input.read_line(&mut t).ok(); self.enqueue(t); } fn enqueue_to_end(&mut self) { let mut t = String::new(); self.input.read_to_string(&mut t).ok(); self.enqueue(t); } } macro_rules! scan { ($io:expr => $t:ty) => { $io.take().unwrap().parse::<$t>().unwrap() }; ($io:expr => $t:tt * $n:expr) => ((0..$n).map(|_| scan!($io => $t)).collect::>()); ($io:expr => $($t:tt),*) => (($(scan!($io => $t)),*)); } fn main() { solve(Scanner::::new(std::io::stdin().lock())) } fn solve(mut cin: Scanner) { cin.enqueue_to_end(); let n = scan!(cin => i32); let aa = scan!(cin => i32 * n); let mut one = 0 as i64; let mut two = 0 as i64; let mut three = 0 as i64; for a in aa { match a { 1 => one += 1, 2 => two += 1, _ => three += 1, } } let mut total = 0; total += 2 * one * (one - 1) / 2; total += 1 * two * (two - 1) / 2; total += 1 * three * (three - 1) / 2; total += 3 * one * two; total += 2 * one * three; total += 1 * two * three; println!("{}", total); }