結果

問題 No.2300 Substring OR Sum
ユーザー startcppstartcpp
提出日時 2023-05-13 19:52:44
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 143 ms / 2,000 ms
コード長 573 bytes
コンパイル時間 523 ms
コンパイル使用メモリ 66,420 KB
実行使用メモリ 48,768 KB
最終ジャッジ日時 2024-11-29 11:24:34
合計ジャッジ時間 2,964 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 43 ms
16,000 KB
testcase_04 AC 36 ms
13,952 KB
testcase_05 AC 44 ms
16,768 KB
testcase_06 AC 23 ms
10,240 KB
testcase_07 AC 141 ms
47,104 KB
testcase_08 AC 58 ms
21,248 KB
testcase_09 AC 47 ms
17,664 KB
testcase_10 AC 110 ms
37,120 KB
testcase_11 AC 130 ms
43,008 KB
testcase_12 AC 143 ms
47,360 KB
testcase_13 AC 126 ms
48,768 KB
testcase_14 AC 73 ms
48,768 KB
testcase_15 AC 63 ms
22,528 KB
testcase_16 AC 110 ms
37,248 KB
testcase_17 AC 140 ms
46,080 KB
testcase_18 AC 2 ms
5,248 KB
testcase_19 AC 2 ms
5,248 KB
testcase_20 AC 2 ms
5,248 KB
testcase_21 AC 2 ms
5,248 KB
testcase_22 AC 2 ms
5,248 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