結果

問題 No.183 たのしい排他的論理和(EASY)
ユーザー hokutohokuto
提出日時 2021-08-30 22:13:52
言語 C++17(clang)
(17.0.6 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 643 bytes
コンパイル時間 1,217 ms
コンパイル使用メモリ 145,612 KB
実行使用メモリ 12,140 KB
最終ジャッジ日時 2024-05-03 08:13:18
合計ジャッジ時間 7,846 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 3 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 1 ms
6,940 KB
testcase_05 AC 4 ms
6,940 KB
testcase_06 AC 1 ms
6,940 KB
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 <iostream>
#include <utility>
#include <vector>
#include <string>
#include <cmath>
#include <algorithm>
#include <functional>
#include <iomanip>
#include <map>
#include <set>
#include <queue>
using namespace std;
using ll = long long int;
#define chmax(x,y)  x = (x > (y)) ? x : (x = (y));
#define chmin(x,y)  x = (x < (y)) ? x : (x = (y));


int main(int argc, char const *argv[])
{
  set<ll> st;
  st.insert(0);
  int N; cin >> N;
  for(int i=0;i<N;++i)
  {
    ll a; cin >> a;
    vector<ll> A;
    for(auto &s : st)
    {
      A.push_back(s^a);
    }
    for(auto &e : A)st.insert(e);
  }
  std::cout << st.size() << std::endl;
}
0