結果

問題 No.183 たのしい排他的論理和(EASY)
ユーザー 🍡yurahuna🍡yurahuna
提出日時 2016-02-26 17:08:27
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 1,052 bytes
コンパイル時間 563 ms
コンパイル使用メモリ 74,100 KB
実行使用メモリ 83,536 KB
最終ジャッジ日時 2024-09-22 13:58:19
合計ジャッジ時間 2,497 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 WA -
testcase_08 AC 118 ms
74,764 KB
testcase_09 AC 81 ms
52,464 KB
testcase_10 AC 99 ms
62,352 KB
testcase_11 AC 126 ms
81,312 KB
testcase_12 WA -
testcase_13 AC 2 ms
6,944 KB
testcase_14 AC 135 ms
83,428 KB
testcase_15 AC 131 ms
83,536 KB
testcase_16 AC 2 ms
6,944 KB
testcase_17 AC 31 ms
22,720 KB
testcase_18 WA -
testcase_19 AC 16 ms
12,452 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <iostream>
#include <algorithm>
#include <complex>
#include <queue>
#include <map>
#include <string>
using namespace std;

#define FOR(i,a,b) for (int i=(a);i<(b);i++)
#define FORR(i,a,b) for (int i=(b)-1;i>=(a);i--)
#define REP(i,n) for (int i=0;i<(n);i++)
#define RREP(i,n) for (int i=(n)-1;i>=0;i--)
#define pb push_back
#define ALL(a) (a).begin(),(a).end()

#define EPS (1e-10)
#define EQ(a,b) (abs((a)-(b)) < EPS)

#define PI 3.1415926535

typedef long long ll;
typedef pair<int, int> P;
//typedef complex<double> C;

const int MAX_N = 5000;
const int MAX_A = 1<<14;

int N;
int A[MAX_N];
bool dp[MAX_N + 1][MAX_A + 1];

void input() {
	cin >> N;
	REP(i, N) cin >> A[i];
}

void solve() {
	REP(i, N) {
		REP(j, MAX_A + 1) {
			dp[i][j] = false;
		}
	}
	dp[0][0] = true;

	REP(i, N) {
		REP(j, MAX_A + 1) {
			if (dp[i][j]) {
				dp[i+1][j ^ A[i]] = true;
				dp[i+1][j] = true;
			}
		}
	}
	int cnt = 0;
	REP(j, MAX_A + 1) {
		if (dp[N][j]) {
			cnt++;
		}
	}
	cout << cnt << endl;
}

int main() {
	input();
	solve();
}
0