結果

問題 No.183 たのしい排他的論理和(EASY)
ユーザー machymachy
提出日時 2015-06-13 12:53:57
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 545 bytes
コンパイル時間 463 ms
コンパイル使用メモリ 68,056 KB
実行使用メモリ 4,504 KB
最終ジャッジ日時 2023-09-20 21:16:12
合計ジャッジ時間 2,484 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,376 KB
testcase_01 AC 2 ms
4,376 KB
testcase_02 AC 2 ms
4,376 KB
testcase_03 AC 2 ms
4,380 KB
testcase_04 AC 2 ms
4,376 KB
testcase_05 AC 2 ms
4,376 KB
testcase_06 AC 2 ms
4,376 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 2 ms
4,376 KB
testcase_13 AC 2 ms
4,376 KB
testcase_14 AC 161 ms
4,380 KB
testcase_15 WA -
testcase_16 AC 2 ms
4,380 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#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^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;
}
0