#include using namespace std; using ll = long long; using ld = long double; using pll = pair; constexpr ll MOD = 1e9 + 7; //constexpr ll MOD = 998244353; //constexpr ll MOD = ; ll mod(ll A, ll M) {return (A % M + M) % M;} constexpr ll INF = 1LL << 60; template bool chmin(T& a, T b) {if (a > b) {a = b; return true;} return false;} template bool chmax(T& a, T b) {if (a < b) {a = b; return true;} return false;} ll divceil(ll A, ll B) {return (A + (B - 1)) / B;} #define FINALANS(A) do {cout << (A) << '\n'; exit(0);} while (false) int main() { ll N; cin >> N; vector A(N); for (ll i = 0; i < N; i++) { cin >> A.at(i); } ll one = count(A.begin(), A.end(), 1); ll two = count(A.begin(), A.end(), 2); ll three = N - one - two; ll ansone = (two + three) * (two + three - 1) / 2; ll anstwo = one * (one - 1) / 2 + one * three; ll ansthree = one * two; cout << ansone + 2 * anstwo + 3 * ansthree << endl; }