結果

問題 No.2300 Substring OR Sum
ユーザー Meet BrahmbhattMeet Brahmbhatt
提出日時 2023-05-14 03:45:53
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 114 ms / 2,000 ms
コード長 1,032 bytes
コンパイル時間 2,156 ms
コンパイル使用メモリ 208,204 KB
実行使用メモリ 59,512 KB
最終ジャッジ日時 2024-05-07 05:07:05
合計ジャッジ時間 4,618 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,812 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 33 ms
18,688 KB
testcase_04 AC 27 ms
16,128 KB
testcase_05 AC 34 ms
19,584 KB
testcase_06 AC 18 ms
11,520 KB
testcase_07 AC 113 ms
57,016 KB
testcase_08 AC 48 ms
25,344 KB
testcase_09 AC 38 ms
20,864 KB
testcase_10 AC 89 ms
44,940 KB
testcase_11 AC 102 ms
52,060 KB
testcase_12 AC 114 ms
57,396 KB
testcase_13 AC 93 ms
59,512 KB
testcase_14 AC 83 ms
59,300 KB
testcase_15 AC 49 ms
26,880 KB
testcase_16 AC 87 ms
45,056 KB
testcase_17 AC 109 ms
56,116 KB
testcase_18 AC 1 ms
6,944 KB
testcase_19 AC 2 ms
6,944 KB
testcase_20 AC 2 ms
6,940 KB
testcase_21 AC 2 ms
6,940 KB
testcase_22 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/**
 *  - Meet Brahmbhatt
 *  - Hard work always pays off
**/
#include"bits/stdc++.h"
using namespace std;

#ifdef MeetBrahmbhatt
#include "debug.h"
#else
#define dbg(...) 72
#endif

#define endl "\n"
#define int long long

const long long INF = 4e18;
const int32_t M = 1e9 + 7;
const int32_t MM = 998244353;

void solve() {
    int n;
    cin >> n;
    vector<int> v(n);
    for (int i = 0; i < n; i++) {
        cin >> v[i];
    }
    vector<vector<int>> b(n + 1, vector<int>(30, n));
    for (int i = n - 1; i >= 0; i--) {
        b[i] = b[i + 1];
        for (int j = 0; j < 30; j++) {
            if (v[i] >> j & 1) {
                b[i][j] = i;
            }
        }
    }
    int ans = 0;
    for (int i = 0; i < n; i++) {
        for (int j = 0; j < 30; j++) {
            ans += (1 << j) * (n - b[i][j]);
        }
    }
    cout << ans;
}

signed main() {
    ios_base::sync_with_stdio(0);
    cin.tie(0);
    cout << fixed << setprecision(9);
    int tt = 1;
    // cin >> tt;
    while (tt--) solve();
    return 0;
}
0