結果
| 問題 | No.183 たのしい排他的論理和(EASY) |
| コンテスト | |
| ユーザー |
tetsuzuki1115
|
| 提出日時 | 2017-10-14 18:34:58 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 854 bytes |
| コンパイル時間 | 663 ms |
| コンパイル使用メモリ | 83,680 KB |
| 実行使用メモリ | 6,820 KB |
| 最終ジャッジ日時 | 2024-11-17 14:46:59 |
| 合計ジャッジ時間 | 3,086 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 15 RE * 3 |
ソースコード
#include <iostream>
#include <vector>
#include <string>
#include <cstring>
#include <math.h>
#include <cmath>
#include <limits.h>
#include <map>
#include <set>
#include <queue>
#include <algorithm>
#include <functional>
#include <stdio.h>
using namespace std;
long long MOD = 1000000007;
int main() {
int N;
cin >> N;
vector<int> A(N);
int dp[(1<<14)+1] = {0};
for ( int i = 0; i < N; i++ ) {
cin >> A[i];
}
dp[0] = 1;
for ( int i = 0; i < N; i++ ) {
vector<int> x;
for ( int j = 0; j <= (1<<14); j++ ) {
if ( dp[j] ) { x.push_back( j ^ A[i] ); }
}
for ( auto& a : x ) {
dp[a] = 1;
}
}
int ans = 0;
for ( int j = 0; j <= (1<<14); j++ ) {
if ( dp[j] ) { ans++; }
}
cout << ans << endl;
return 0;
}
tetsuzuki1115