結果

問題 No.2300 Substring OR Sum
ユーザー KKT89KKT89
提出日時 2023-05-12 21:32:08
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 57 ms / 2,000 ms
コード長 1,016 bytes
コンパイル時間 2,510 ms
コンパイル使用メモリ 212,368 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-06 11:10:05
合計ジャッジ時間 3,938 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 18 ms
5,376 KB
testcase_04 AC 15 ms
5,376 KB
testcase_05 AC 18 ms
5,376 KB
testcase_06 AC 10 ms
5,376 KB
testcase_07 AC 56 ms
5,376 KB
testcase_08 AC 24 ms
5,376 KB
testcase_09 AC 19 ms
5,376 KB
testcase_10 AC 44 ms
5,376 KB
testcase_11 AC 50 ms
5,376 KB
testcase_12 AC 57 ms
5,376 KB
testcase_13 AC 34 ms
5,376 KB
testcase_14 AC 19 ms
5,376 KB
testcase_15 AC 25 ms
5,376 KB
testcase_16 AC 44 ms
5,376 KB
testcase_17 AC 55 ms
5,376 KB
testcase_18 AC 2 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 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC optimize("Ofast")
#include <bits/stdc++.h>
using namespace std;
typedef long long int ll;
typedef unsigned long long int ull;

mt19937_64 rng(chrono::steady_clock::now().time_since_epoch().count());
ll myRand(ll B) {
    return (ull)rng() % B;
}
inline double time() {
    return static_cast<long double>(chrono::duration_cast<chrono::nanoseconds>(chrono::steady_clock::now().time_since_epoch()).count()) * 1e-9;
}

int main(){
    cin.tie(nullptr);
    ios::sync_with_stdio(false);
    ll n; cin >> n;
    vector<int> a(n);
    ll res = 0;
    for (int i = 0; i < n; ++i) {
        cin >> a[i];
    }
    ll u = n*(n+1)/2;
    for (int i = 0; i < 28; ++i) {
        res += (1LL<<i)*u;
        ll cnt = 0;
        for (int j = 0; j < n; ++j) {
            if ((1LL<<i)&a[j]) {
                res -= (1LL<<i)*(cnt)*(cnt+1)/2;
                cnt = 0;
            }
            else {
                cnt++;
            }
        }
        res -= (1LL<<i)*(cnt)*(cnt+1)/2;
    }
    cout << res << endl;
}
0