結果

問題 No.183 たのしい排他的論理和(EASY)
ユーザー mannshi222mannshi222
提出日時 2022-04-29 18:19:56
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 4,911 ms / 5,000 ms
コード長 576 bytes
コンパイル時間 867 ms
コンパイル使用メモリ 84,116 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-28 23:38:35
合計ジャッジ時間 32,609 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 4 ms
6,940 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 1 ms
6,944 KB
testcase_05 AC 6 ms
6,940 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 4,294 ms
6,940 KB
testcase_08 AC 4,458 ms
6,940 KB
testcase_09 AC 2,947 ms
6,940 KB
testcase_10 AC 3,682 ms
6,944 KB
testcase_11 AC 4,481 ms
6,944 KB
testcase_12 AC 11 ms
6,940 KB
testcase_13 AC 1 ms
6,940 KB
testcase_14 AC 2 ms
6,944 KB
testcase_15 AC 4,911 ms
6,944 KB
testcase_16 AC 2 ms
6,944 KB
testcase_17 AC 1,121 ms
6,944 KB
testcase_18 AC 4,339 ms
6,944 KB
testcase_19 AC 637 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <set>
#include <string>

using namespace std;

int main()
{
	int N;
	cin >> N;
	set<int> A;
	for( int i = 0; i < N; i++ ) {
		int tmp;
		cin >> tmp;
		A.insert(tmp);
	}
	set<int> dp;
	dp.insert(0);
	
	for( auto itr  = A.begin(); itr != A.end(); itr++ ) {
		set<int> tmp = dp;
		for( auto itr2  = dp.begin(); itr2 != dp.end(); itr2++ ) {
			tmp.insert( (*itr) ^ (*itr2) );
		}
		dp = tmp;
    }

	/*
	for( auto itr  = dp.begin(); itr != dp.end(); itr++ ) {
		cout << *itr << endl;
	}
	/**/
	cout << dp.size() << endl;
	return 0;
}
0