import java.io.*; import java.util.*; public class Main { public static void main(String[] args) throws Exception { Scanner sc = new Scanner(); int n = sc.nextInt(); long one = 0; long two = 0; long other = 0; for (int i = 0; i < n; i++) { int a = sc.nextInt(); if (a == 1) { one++; } else if (a == 2) { two++; } else { other++; } } long ans = 0; ans += one * (one - 1) / 2 * 2; ans += one * two * 3; ans += one * other * 2; ans += (two + other - 1) * (two + other) / 2; System.out.println(ans); } } class Scanner { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); StringTokenizer st = new StringTokenizer(""); public Scanner() throws Exception { } public int nextInt() throws Exception { return Integer.parseInt(next()); } public long nextLong() throws Exception { return Long.parseLong(next()); } public String next() throws Exception { if (!st.hasMoreTokens()) { st = new StringTokenizer(br.readLine()); } return st.nextToken(); } }