結果
| 問題 | No.2300 Substring OR Sum |
| コンテスト | |
| ユーザー |
shobonvip
|
| 提出日時 | 2023-05-12 21:34:10 |
| 言語 | C++17 (gcc 15.2.0 + boost 1.90.0) |
| 結果 |
AC
|
| 実行時間 | 78 ms / 2,000 ms |
| コード長 | 749 bytes |
| 記録 | |
| コンパイル時間 | 2,903 ms |
| コンパイル使用メモリ | 273,716 KB |
| 実行使用メモリ | 6,400 KB |
| 最終ジャッジ日時 | 2026-06-30 14:37:55 |
| 合計ジャッジ時間 | 4,570 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 20 |
ソースコード
#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;
}
shobonvip