結果

問題 No.2300 Substring OR Sum
ユーザー StstoneStstone
提出日時 2023-05-16 10:55:32
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 97 ms / 2,000 ms
コード長 1,283 bytes
コンパイル時間 2,638 ms
コンパイル使用メモリ 217,544 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-05-08 09:27:40
合計ジャッジ時間 5,010 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 29 ms
6,940 KB
testcase_04 AC 23 ms
6,940 KB
testcase_05 AC 30 ms
6,944 KB
testcase_06 AC 16 ms
6,940 KB
testcase_07 AC 94 ms
6,944 KB
testcase_08 AC 40 ms
6,944 KB
testcase_09 AC 33 ms
6,944 KB
testcase_10 AC 74 ms
6,944 KB
testcase_11 AC 85 ms
6,940 KB
testcase_12 AC 97 ms
6,940 KB
testcase_13 AC 57 ms
6,940 KB
testcase_14 AC 29 ms
6,944 KB
testcase_15 AC 43 ms
6,944 KB
testcase_16 AC 74 ms
6,940 KB
testcase_17 AC 92 ms
6,940 KB
testcase_18 AC 3 ms
6,940 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,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma target("popcnt")
#pragma GCC optimize("O3")
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef string str;
typedef pair<ll,ll> pii;
#define F first
#define S second
#define pb push_back
#define pq priority_queue
#define all(x) (x).begin(),(x).end()
#define bug(x) cerr << (x) << ' '
#define debug(x) cerr << #x << " = " << x << '\n'
#define yn(x) cout << (x==1?"Yes\n":"No\n")
#define PI 3.14159265358979323
#define Ststone ios_base::sync_with_stdio(0);cin.tie(0);cout.tie(0)

const ll max_n=1e5+10,max_int=2147483647,mod1=1e9+7,mod2=998244353;
ll t,n,m,h,w,a,b,c,d,q;
long long ans=0;
vector<ll> v,v1,v2;
//str s1,s2,s;
set<ll> s1,s2,ss;
deque<ll> de;
void solve(){
    cin >> n;
    for(ll i=0;i<n;i++){
        cin >> a;
        v.pb(a);
    }
    ll ans = 0;
    for(ll i=0;i<30;i++){
        de.clear();
        for(ll j=0;j<n;j++){
            if(v[j]&(1<<i)) de.push_back(j);
        }
        de.push_back(mod1);
        for(ll j=0;j<n;j++){
            while(de.front()<j) de.pop_front();
            ll x = de.front();
            if(x!=mod1){
                ans += (1<<i) * (n-x);
            }
        }
    }
    cout << ans << '\n';
}

int main(){
    Ststone;
    //cin >> t;
    t = 1;
    while(t--){
        solve();
    }
}

/*
*/
0