結果

問題 No.2300 Substring OR Sum
ユーザー PechiPechi
提出日時 2023-05-12 21:39:09
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 103 ms / 2,000 ms
コード長 1,441 bytes
コンパイル時間 2,185 ms
コンパイル使用メモリ 179,396 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-06 11:22:19
合計ジャッジ時間 3,975 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 29 ms
5,376 KB
testcase_04 AC 25 ms
5,376 KB
testcase_05 AC 31 ms
5,376 KB
testcase_06 AC 17 ms
5,376 KB
testcase_07 AC 98 ms
5,376 KB
testcase_08 AC 41 ms
5,376 KB
testcase_09 AC 35 ms
5,376 KB
testcase_10 AC 79 ms
5,376 KB
testcase_11 AC 89 ms
5,376 KB
testcase_12 AC 103 ms
5,376 KB
testcase_13 AC 85 ms
5,376 KB
testcase_14 AC 39 ms
5,376 KB
testcase_15 AC 45 ms
5,376 KB
testcase_16 AC 74 ms
5,376 KB
testcase_17 AC 98 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 1 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define _USE_MATH_DEFINES
#pragma GCC target("avx2")
#pragma GCC optimize("O3")
#define _USE_MATH_DEFINES
#include<bits/stdc++.h>
#include<unordered_map>
#include<random>
#include <array>
#include <complex>
using namespace std;
#define LP(I,S,G) for (long long int I = (S); I < (G); ++I)
#define IN(X) 	for (int in = 0; in < X.size(); in++)cin >> X[in]
#define OUT(X) 	for (int in = 0; in < X.size(); in++)cout << X[in]<<" "
#define SORT(X) sort((X).begin(), (X).end())
#define CSORT(X,Y) sort(X.begin(), X.end(),Y)
#define COPY(X,Y) copy(X.begin(), X.end(), Y.begin())
#define ALL(X,Y) for (auto X = (Y).begin(); X != (Y).end(); X++)
#define FULL(a)  (a).begin(),(a).end()
#define BFS(Q,S) for(Q.push(S);Q.size()!=0;Q.pop())
typedef long long int ll;
typedef unsigned long long int ull;
long long int M = 998244353;


int dx[] = { -1,0,1,0 }, dy[] = { 0,1,0,-1 };

ll MAX(ll A, ll B) { return ((A) > (B) ? (A) : (B)); }
ll MIN(ll A, ll B) { return ((A) < (B) ? (A) : (B)); }
inline long long int xor128() {
	static long long int x = 123456789, y = 362436069, z = 521288629, w = 88675123;
	long long int t = (x ^ (x << 11));
	x = y; y = z; z = w;
	return (w = (w ^ (w >> 19)) ^ (t ^ (t >> 8)));
}



int main() {
	ll n;
	cin >> n;
	vector<ll> h(28, -1);
	vector<ll> a(n);
	IN(a);
	ll ans = 0;
	LP(i, 0, n) {
		LP(k, 0, 28) {
			if (a[i] % 2) {
				h[k] = i;
			}
			ans += (1 << k)*(h[k] + 1);
			a[i] /= 2;
		}
	}
	cout << ans;
	return 0;
}
0