結果

問題 No.183 たのしい排他的論理和(EASY)
ユーザー deark1414deark1414
提出日時 2017-10-05 17:25:38
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 238 ms / 5,000 ms
コード長 612 bytes
コンパイル時間 484 ms
コンパイル使用メモリ 64,568 KB
実行使用メモリ 163,584 KB
最終ジャッジ日時 2024-06-30 03:15:48
合計ジャッジ時間 3,940 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 86 ms
163,200 KB
testcase_01 AC 85 ms
163,348 KB
testcase_02 AC 90 ms
163,456 KB
testcase_03 AC 86 ms
163,556 KB
testcase_04 AC 85 ms
163,192 KB
testcase_05 AC 86 ms
163,456 KB
testcase_06 AC 86 ms
163,456 KB
testcase_07 AC 238 ms
163,512 KB
testcase_08 AC 220 ms
163,476 KB
testcase_09 AC 181 ms
163,456 KB
testcase_10 AC 196 ms
163,584 KB
testcase_11 AC 230 ms
163,480 KB
testcase_12 AC 87 ms
163,456 KB
testcase_13 AC 86 ms
163,400 KB
testcase_14 AC 86 ms
163,456 KB
testcase_15 AC 234 ms
163,576 KB
testcase_16 AC 86 ms
163,456 KB
testcase_17 AC 121 ms
163,456 KB
testcase_18 AC 224 ms
163,548 KB
testcase_19 AC 103 ms
163,456 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<vector>
#include<string.h>
#include<algorithm>

using namespace std;
const int lim = 1<<15;
bool dp[5001][lim+1];
int main(){
	memset(dp,0,sizeof(dp));
	int n;
	cin >> n;
	
	vector<int> a;
	for(int i = 0;i < n;i++){
		int ta;
		cin >> ta;
		if(find(a.begin(),a.end(),ta) == a.end()) a.push_back(ta);
	}
	
	dp[0][0] = true;
	for(int i = 0;i < a.size();i++){
		for(int j = 0;j <= lim;j++){
			if(dp[i][j]){
				dp[i+1][j] = true;
				dp[i+1][j ^ a[i]] = true;
			}
		}
	}
	
	int ans = 0;
	for(int i = 0;i <= lim;i++){
		if(dp[a.size()][i]) ans++;
	}
	
	cout << ans << endl;
	return 0;
}
0