結果

問題 No.2300 Substring OR Sum
ユーザー stoqstoq
提出日時 2023-03-13 20:53:56
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 139 ms / 2,000 ms
コード長 581 bytes
コンパイル時間 2,001 ms
コンパイル使用メモリ 203,896 KB
実行使用メモリ 8,424 KB
最終ジャッジ日時 2024-05-06 10:29:25
合計ジャッジ時間 4,062 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 38 ms
5,376 KB
testcase_04 AC 31 ms
5,376 KB
testcase_05 AC 38 ms
5,376 KB
testcase_06 AC 20 ms
5,376 KB
testcase_07 AC 128 ms
6,436 KB
testcase_08 AC 57 ms
5,376 KB
testcase_09 AC 40 ms
5,376 KB
testcase_10 AC 100 ms
5,972 KB
testcase_11 AC 120 ms
6,304 KB
testcase_12 AC 127 ms
6,584 KB
testcase_13 AC 139 ms
8,424 KB
testcase_14 AC 34 ms
5,376 KB
testcase_15 AC 59 ms
5,376 KB
testcase_16 AC 102 ms
5,972 KB
testcase_17 AC 125 ms
6,408 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 2 ms
5,376 KB
testcase_22 AC 1 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;

int main() {
  ll n;
  cin >> n;
  vector<ll> a(n);
  for (int i = 0; i < n; i++) cin >> a[i];
  ll sum = 0;
  for (int bit = 0; bit < 28; bit++) {
    vector<ll> pos;
    pos.push_back(-1);
    for (int i = 0; i < n; i++) {
      if (a[i] & (1LL << bit)) pos.push_back(i);
    }
    pos.push_back(n);
    ll cnt = n * (n + 1) / 2;
    for (int i = 0; i + 1 < pos.size(); i++) {
      ll k = pos[i + 1] - pos[i] - 1;
      cnt -= k * (k + 1) / 2;
    }
    sum += (1LL << bit) * cnt;
  }
  cout << sum << "\n";
}
0