結果

問題 No.183 たのしい排他的論理和(EASY)
ユーザー mayoko_mayoko_
提出日時 2015-04-16 23:37:07
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 565 bytes
コンパイル時間 1,186 ms
コンパイル使用メモリ 149,248 KB
実行使用メモリ 9,004 KB
最終ジャッジ日時 2023-09-17 21:13:09
合計ジャッジ時間 7,690 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <bits/stdc++.h>

#define rep(i, n) for (int (i) = 0; (i) < (int)(n); (i)++)

const int dx[] = {1, 0, -1, 0};
const int dy[] = {0, 1, 0, -1};
using namespace std;
typedef long long ll;

const int MAXN = 5555;
int A[MAXN];
set<int> S;

int main() {
    cin.tie(0);
    ios::sync_with_stdio(false);
    int N;
    cin >> N;
    for (int i = 0 ;i < N; i++) cin >> A[i];
    S.insert(0);
    for (int i = 0 ;i < N; i++) {
        for (int el : S) {
            el |= A[i];
            S.insert(el);
        }
    }
    cout << S.size() << endl;
    return 0;
}
0