#pragma GCC optimize("Ofast") #include using namespace std; typedef long long int ll; typedef unsigned long long ull; mt19937_64 rng(chrono::steady_clock::now().time_since_epoch().count()); ll myRand(ll B) { return (ull)rng() % B; } int main(){ cin.tie(nullptr); ios::sync_with_stdio(false); int n; cin >> n; ll res=0; const int N=3001; vector r(N+1),g(N),b(N); for(int i=0;i> x; r[x]++; } for(int i=0;i> x; g[x]++; } for(int i=0;i> x; b[x]++; } for(int i=0;i