結果

問題 No.2300 Substring OR Sum
ユーザー shobonvip
提出日時 2023-05-12 21:34:10
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 114 ms / 2,000 ms
コード長 749 bytes
コンパイル時間 3,554 ms
コンパイル使用メモリ 250,724 KB
最終ジャッジ日時 2025-02-12 22:11:11
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 20
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
#include<atcoder/all>
using namespace std;
using namespace atcoder;

typedef modint998244353 mint;
typedef long long ll;

int main(){
	int n; cin >> n;
	vector<int> a(n);
	for (int i=0; i<n; i++) cin >> a[i];
	// shukyaku tentou
	// yo jishou
	ll ans = 0;
	for (int i=0; i<28; i++){
		vector<int> r(0);
		bool mode = false;
		int now = 0;
		for (int j=0; j<n; j++){
			if ((a[j] >> i & 1) == 0){
				if (mode){
					now++;
				}else{
					now=1;
					mode = true;
				}
			}else{
				if (mode){
					mode = false;
					r.push_back(now);
				}
			}
		}
		if (mode){
			r.push_back(now);
		}
		ans += ((ll)n*(n+1)/2) << (ll)i;
		for (int k: r){
			ll tmp = (ll)k*(k+1)/2;
			ans -= tmp << (ll)i;
		}
	}
	cout << ans << endl;
}
0