結果
| 問題 | No.183 たのしい排他的論理和(EASY) |
| コンテスト | |
| ユーザー |
machy
|
| 提出日時 | 2015-06-13 13:02:42 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
AC
|
| 実行時間 | 144 ms / 5,000 ms |
| コード長 | 575 bytes |
| コンパイル時間 | 537 ms |
| コンパイル使用メモリ | 68,400 KB |
| 実行使用メモリ | 6,944 KB |
| 最終ジャッジ日時 | 2024-06-29 02:04:10 |
| 合計ジャッジ時間 | 2,171 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 18 |
ソースコード
#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);
cnt[0] = 1;
for(int i = 0; i < N; i++){
for(int j = 0; j < 16384*2; j++){
cnt[j] |= cnt[j];
cnt[j^a[i]] |= cnt[j];
}
}
int ans = 0;
for(int i = 0; i < 16384*2; i++){
if(cnt[i] > 0) ans++;
}
cout << ans << endl;
return 0;
}
machy