結果

問題 No.2300 Substring OR Sum
ユーザー shobonvipshobonvip
提出日時 2023-05-12 21:34:10
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 106 ms / 2,000 ms
コード長 749 bytes
コンパイル時間 4,339 ms
コンパイル使用メモリ 261,460 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-06 11:14:48
合計ジャッジ時間 5,808 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 30 ms
5,376 KB
testcase_04 AC 24 ms
5,376 KB
testcase_05 AC 32 ms
5,376 KB
testcase_06 AC 16 ms
5,376 KB
testcase_07 AC 102 ms
5,376 KB
testcase_08 AC 44 ms
5,376 KB
testcase_09 AC 34 ms
5,376 KB
testcase_10 AC 83 ms
5,376 KB
testcase_11 AC 94 ms
5,376 KB
testcase_12 AC 106 ms
5,376 KB
testcase_13 AC 80 ms
5,376 KB
testcase_14 AC 41 ms
5,376 KB
testcase_15 AC 49 ms
5,376 KB
testcase_16 AC 84 ms
5,376 KB
testcase_17 AC 101 ms
5,376 KB
testcase_18 AC 1 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 1 ms
5,376 KB
testcase_22 AC 1 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

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