結果

問題 No.2300 Substring OR Sum
ユーザー hourenhouren
提出日時 2023-05-12 21:55:40
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 51 ms / 2,000 ms
コード長 953 bytes
コンパイル時間 1,399 ms
コンパイル使用メモリ 167,352 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-06 11:45:21
合計ジャッジ時間 2,739 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 16 ms
5,376 KB
testcase_04 AC 13 ms
5,376 KB
testcase_05 AC 16 ms
5,376 KB
testcase_06 AC 10 ms
5,376 KB
testcase_07 AC 51 ms
5,376 KB
testcase_08 AC 22 ms
5,376 KB
testcase_09 AC 18 ms
5,376 KB
testcase_10 AC 40 ms
5,376 KB
testcase_11 AC 46 ms
5,376 KB
testcase_12 AC 49 ms
5,376 KB
testcase_13 AC 31 ms
5,376 KB
testcase_14 AC 17 ms
5,376 KB
testcase_15 AC 22 ms
5,376 KB
testcase_16 AC 39 ms
5,376 KB
testcase_17 AC 49 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 #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
using P = pair<ll,ll>;
#define fix(x) fixed << setprecision(x)
#define asc(x) x, vector<x>, greater<x>
#define rep(i, n) for(ll i = 0; i < n; i++)
#define all(x) (x).begin(),(x).end()
template<class T>bool chmin(T&a, const T&b){if(a>b){a=b;return 1;}return 0;}
template<class T>bool chmax(T&a, const T&b){if(a<b){a=b;return 1;}return 0;}
constexpr ll INFLL = (1LL << 62), MOD = 998244353;
constexpr int INF = (1 << 30);

int main(){
    cin.tie(nullptr);
    ios::sync_with_stdio(false);
    ll n;
    cin >> n;
    ll ans = n * (n+1) / 2 * ((1<<28)-1);
    vector<int> a(n);
    rep(i,n) cin >> a[i];
    rep(i,28){
        ll cnt = 0;
        rep(j,n){
            if((a[j]>>i)&1){
                ans -= (1<<i) * (cnt+1) * cnt / 2;
                cnt = 0;
            }else cnt++;
        }
        ans -= (1<<i) * (cnt+1) * cnt / 2;
    }
    cout << ans << '\n';
    return 0;
}
0