Lang:G++
Edit12345678910111213141516171819202122232425262728293031#include<bits/stdc++.h>#define INF 0x3f3f3f3f#define LL long long#define ULL unsigned long long#define bug(x) cout<<"bug-----"<<x<<endl#define R(i,n) for(int i = 0; i < n; i++)using namespace std;const int mod= 1e9+7;const int maxn = 110 +10;LL a[33+10];LL b[33+10];int main(){//freopen("C:\\Users\\admin\\Desktop\\1.in","r",stdin);//freopen("C:\\Users\\admin\\Desktop\\1.out","w",stdout);std::ios::sync_with_stdio(false);int n;cin>>n;for(int i=0;i<n;i++){LL t;cin>>t;for(int i=0;i<=34;i++){if(t&1){a[i]++;}else{b[i]++;}