結果

問題 No.2300 Substring OR Sum
ユーザー startcppstartcpp
提出日時 2023-05-13 19:52:44
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 126 ms / 2,000 ms
コード長 573 bytes
コンパイル時間 712 ms
コンパイル使用メモリ 66,760 KB
実行使用メモリ 48,768 KB
最終ジャッジ日時 2024-05-07 00:13:59
合計ジャッジ時間 3,143 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 3 ms
5,376 KB
testcase_03 AC 44 ms
16,256 KB
testcase_04 AC 38 ms
14,080 KB
testcase_05 AC 45 ms
16,896 KB
testcase_06 AC 26 ms
10,112 KB
testcase_07 AC 124 ms
47,104 KB
testcase_08 AC 57 ms
21,376 KB
testcase_09 AC 48 ms
17,792 KB
testcase_10 AC 99 ms
37,120 KB
testcase_11 AC 116 ms
42,880 KB
testcase_12 AC 126 ms
47,232 KB
testcase_13 AC 106 ms
48,768 KB
testcase_14 AC 57 ms
48,768 KB
testcase_15 AC 60 ms
22,528 KB
testcase_16 AC 100 ms
37,120 KB
testcase_17 AC 126 ms
46,208 KB
testcase_18 AC 3 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

//得意
#include <iostream>
#include <algorithm>
#define rep(i, n) for(i = 0; i < n; i++)
#define int long long
using namespace std;

int n;
int a[200000];
int minR[28][200001];

signed main() {
	int i, j;

	cin >> n;
	rep(i, n) cin >> a[i];

	rep(i, 28) {
		minR[i][n] = n;
		for (j = n - 1; j >= 0; j--) {
			if ((a[j] >> i) % 2 == 1) {
				minR[i][j] = j;
			}
			else {
				minR[i][j] = minR[i][j + 1];
			}
		}
	}

	int ans = 0;
	rep(i, 28) {
		int cnt = 0;
		rep(j, n) {
			cnt += n - minR[i][j];
		}
		ans += cnt * (1LL << i);
	}

	cout << ans << endl;
	return 0;
}
0