結果

問題 No.183 たのしい排他的論理和(EASY)
ユーザー HachimoriHachimori
提出日時 2015-04-16 23:42:25
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 579 bytes
コンパイル時間 409 ms
コンパイル使用メモリ 54,504 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-04 15:13:16
合計ジャッジ時間 1,774 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 1 ms
6,940 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 RE -
testcase_08 AC 49 ms
6,940 KB
testcase_09 AC 34 ms
6,944 KB
testcase_10 AC 47 ms
6,940 KB
testcase_11 AC 54 ms
6,940 KB
testcase_12 RE -
testcase_13 AC 1 ms
6,944 KB
testcase_14 AC 3 ms
6,940 KB
testcase_15 AC 55 ms
6,944 KB
testcase_16 WA -
testcase_17 AC 13 ms
6,944 KB
testcase_18 RE -
testcase_19 AC 7 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<numeric>
using namespace std;
const int VAL = 5005;
const int RANGE = (1 << 14) + 5;


int nVal, val[VAL];

void read() {
    cin >> nVal;
    for (int i = 0; i < nVal; ++i)
        cin >> val[i];
}


void work() {
    bool avail[RANGE] = {};
    avail[0] = true;
    
    for (int i = 0; i < RANGE; ++i) {
        if (!avail[i])
            continue;

        for (int j = 0; j < nVal; ++j)
            avail[i ^ val[j]] = true;
    }

    cout << accumulate(avail, avail + RANGE, 0) << endl;
}


int main() {
    read();
    work();
    return 0;
}
0