結果
| 問題 | No.183 たのしい排他的論理和(EASY) |
| コンテスト | |
| ユーザー |
machy
|
| 提出日時 | 2015-06-13 12:55:45 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 631 bytes |
| コンパイル時間 | 588 ms |
| コンパイル使用メモリ | 70,192 KB |
| 実行使用メモリ | 5,376 KB |
| 最終ジャッジ日時 | 2024-07-06 16:04:36 |
| 合計ジャッジ時間 | 2,787 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 9 WA * 9 |
ソースコード
#include <iostream>
#include <vector>
#include <algorithm>
#include <iomanip>
using namespace std;
typedef long long LL;
int main(){
int N;
cin >> N;
vector<int> a(N);
for(int i = 0; i < N; i++){
cin >> a[i];
}
vector<int> cnt(16384*2+1);
vector<int> cnt2(16384*2+1);
cnt[0] = 1;
for(int i = 0; i < N; i++){
for(int j = 0; j < 16384*2; j++){
cnt2[j] += cnt[j];
cnt2[j^a[i]] += cnt[j];
}
cnt = cnt2;
}
int ans = 0;
for(int i = 0; i < 16384*2; i++){
if(cnt[i] > 0) ans++;
}
cout << ans << endl;
return 0;
}
machy