結果

問題 No.183 たのしい排他的論理和(EASY)
ユーザー krotonkroton
提出日時 2016-04-17 12:05:17
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 242 ms / 5,000 ms
コード長 476 bytes
コンパイル時間 441 ms
コンパイル使用メモリ 55,008 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-29 13:35:26
合計ジャッジ時間 2,557 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 1 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 1 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 165 ms
6,940 KB
testcase_08 AC 170 ms
6,940 KB
testcase_09 AC 114 ms
6,944 KB
testcase_10 AC 205 ms
6,940 KB
testcase_11 AC 182 ms
6,940 KB
testcase_12 AC 2 ms
6,940 KB
testcase_13 AC 2 ms
6,944 KB
testcase_14 AC 242 ms
6,940 KB
testcase_15 AC 186 ms
6,944 KB
testcase_16 AC 2 ms
6,940 KB
testcase_17 AC 42 ms
6,940 KB
testcase_18 AC 161 ms
6,944 KB
testcase_19 AC 21 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <cstring>
using namespace std;
const int lim = 1 << 15;

bool dp[2][lim];
int main(){
	int N;
	cin >> N;

	int cur = 0, nxt = 1;
	dp[cur][0] = true;
	for(int t=0;t<N;t++){
		int A;
		cin >> A;
		memset(dp[nxt], false, sizeof(dp[nxt]));
		for(int m=0;m<lim;m++){
			dp[nxt][m] |= dp[cur][m];
			dp[nxt][m ^ A] |= dp[cur][m];
		}
		swap(cur, nxt);
	}
	int res = 0;
	for(int m=0;m<lim;m++){
		res += dp[cur][m];
	}
	cout << res << endl;
	return 0;
}
0