結果
| 問題 | No.183 たのしい排他的論理和(EASY) |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2016-02-08 23:27:07 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 655 bytes |
| コンパイル時間 | 1,468 ms |
| コンパイル使用メモリ | 164,084 KB |
| 実行使用メモリ | 5,376 KB |
| 最終ジャッジ日時 | 2024-09-21 21:51:40 |
| 合計ジャッジ時間 | 8,625 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 10 WA * 8 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
#define rep(i,n) for(i=0;i<n;++i)
#define each(itr,c) for(__typeof(c.begin()) itr=c.begin(); itr!=c.end(); itr++)
#define mp make_pair
#define pb push_back
#define fi first
#define sc second
int main(int argc, char const *argv[]) {
int i,j;
int n;
cin >>n;
std::vector<int> a(n+1);
rep(i,n) cin >>a[i+1];
//a_iまでの全てのxor
std::vector<int> x(n+1);
x[0]=0;
rep(i,n) x[i+1]=x[i]^a[i+1];
set<int> s;
rep(i,n+1){
rep(j,i+1){
//printf(" %d\n",x[i]^x[j]);
s.insert(x[i]^x[j]);
}
}
std::cout << s.size() << std::endl;
return 0;
}