結果

問題 No.183 たのしい排他的論理和(EASY)
ユーザー TawaraTawara
提出日時 2015-08-28 11:31:31
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 479 ms / 5,000 ms
コード長 710 bytes
コンパイル時間 736 ms
コンパイル使用メモリ 78,544 KB
実行使用メモリ 23,552 KB
最終ジャッジ日時 2024-06-29 02:43:32
合計ジャッジ時間 4,346 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 479 ms
21,120 KB
testcase_08 AC 350 ms
21,120 KB
testcase_09 AC 241 ms
15,616 KB
testcase_10 AC 289 ms
18,048 KB
testcase_11 AC 379 ms
22,784 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 217 ms
23,424 KB
testcase_15 AC 394 ms
23,552 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 89 ms
7,552 KB
testcase_18 AC 415 ms
20,736 KB
testcase_19 AC 43 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <map>
#include <set>
#include <queue>
#include <deque>
#include <stack>
#include <algorithm>
#include <cmath>
#include <string>

using namespace std;

typedef long long LL;

#define range(i,a,b) for(int i=(a); i < (b); i++)
#define rep(i,n) range(i,0,n)

#define MAX_INT 2147483647
int main(){
	int N, M = 1<<15, ans = 0;
	vector< vector<bool> > dp;   
	cin >> N;
	dp = vector< vector<bool> >(N, vector<bool>(M, false));
	LL A[N];
	rep(i,N) cin >> A[i];
	dp[0][0] = true;
	dp[0][A[0]] = true;
	rep(i,N-1){
		rep(j,M){
			if(dp[i][j]){
				dp[i+1][j] = true;
				dp[i+1][j^A[i+1]] = true;
			}
		}
	}
	rep(i,M) ans += dp[N-1][i];
	cout << ans << endl;
	return 0;
}
0