結果

問題 No.183 たのしい排他的論理和(EASY)
ユーザー springrollspringroll
提出日時 2019-03-10 02:24:47
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 497 bytes
コンパイル時間 1,543 ms
コンパイル使用メモリ 170,188 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-23 15:16:12
合計ジャッジ時間 3,532 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 1 ms
6,940 KB
testcase_05 AC 3 ms
6,944 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 RE -
testcase_08 AC 83 ms
6,944 KB
testcase_09 AC 56 ms
6,940 KB
testcase_10 AC 66 ms
6,940 KB
testcase_11 AC 87 ms
6,944 KB
testcase_12 RE -
testcase_13 AC 2 ms
6,940 KB
testcase_14 AC 91 ms
6,944 KB
testcase_15 AC 97 ms
6,940 KB
testcase_16 AC 2 ms
6,944 KB
testcase_17 AC 21 ms
6,944 KB
testcase_18 RE -
testcase_19 AC 12 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "bits/stdc++.h"
using namespace std;

typedef long long ll;

#define REP(i, n) for (int i = 0; i < (n); i++)
#define INF (1<<30)
#define MAX (16400)


int main() {
	int N; cin >> N;
	vector<int> A(N);
	for(int i=0; i<N; i++) cin >> A[i];

	bool dp[MAX];
	for(int i=0; i<MAX; i++) dp[i]=false;
	dp[0]=true;
	for (int i = 0; i < N; i++) {
		for (int j = 0; j < MAX; j++) {
			if(dp[j]) dp[j^A[i]]=true;
		}
	}

	int ans=0;
	for(int i=0; i<MAX; i++) if(dp[i]) ans++;
	cout << ans << endl;
}
0