Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
55173 | xujindong | 线性基 (basis) | C++ | 通过 | 100 | 23 MS | 248 KB | 345 | 2022-08-09 16:54:57 |
#include<bits/stdc++.h> using namespace std; long long n,b[25],ans; int main(){ cin>>n; for(int i=1,t;i<=n;i++){ cin>>t; for(int j=0;j<20;j++)b[j]+=(t>>j)&1; } for(int i=1;i<=n;i++){ long long temp=0; for(int j=0;j<20;j++)if(b[j])b[j]--,temp+=(1<<j); ans+=temp*temp; } return cout<<ans<<'\n',0; }