結果

問題 No.183 たのしい排他的論理和(EASY)
ユーザー ssssskkkkkssssskkkkk
提出日時 2017-11-28 18:09:59
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
MLE  
実行時間 -
コード長 409 bytes
コンパイル時間 563 ms
コンパイル使用メモリ 67,584 KB
実行使用メモリ 643,584 KB
最終ジャッジ日時 2024-05-05 14:59:52
合計ジャッジ時間 7,876 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 4 ms
5,376 KB
testcase_03 AC 4 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 4 ms
5,376 KB
testcase_06 AC 3 ms
5,376 KB
testcase_07 MLE -
testcase_08 MLE -
testcase_09 AC 584 ms
393,216 KB
testcase_10 AC 648 ms
473,344 KB
testcase_11 MLE -
testcase_12 AC 5 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 MLE -
testcase_15 MLE -
testcase_16 AC 6 ms
5,376 KB
testcase_17 AC 193 ms
144,512 KB
testcase_18 MLE -
testcase_19 AC 98 ms
72,576 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
using namespace std;
const int _max = 1 << 15;
int N;
int A[_max];
int dp[5001][_max];
int main(void) {
	cin >> N;
	dp[0][0] = true;
	for (int n = 1; n <= N; ++n) cin >> A[n];
	for (int n = 1; n <= N; ++n) for (int i = 0; i < _max; ++i) {
		dp[n][i] |= dp[n - 1][i];
		dp[n][i ^ A[n]] |= dp[n - 1][i];
	}
	cout << count(dp[N], dp[N] + _max, true) << endl;
	return 0;
}
0