結果

問題 No.184 たのしい排他的論理和(HARD)
ユーザー Lay_ecLay_ec
提出日時 2015-04-16 23:51:12
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 512 bytes
コンパイル時間 544 ms
コンパイル使用メモリ 78,924 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-07-04 11:12:42
合計ジャッジ時間 3,005 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 WA -
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 WA -
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 47 ms
5,376 KB
testcase_09 AC 11 ms
5,376 KB
testcase_10 AC 36 ms
5,376 KB
testcase_11 AC 26 ms
5,376 KB
testcase_12 AC 55 ms
5,376 KB
testcase_13 AC 59 ms
5,376 KB
testcase_14 AC 35 ms
5,376 KB
testcase_15 AC 63 ms
5,376 KB
testcase_16 AC 52 ms
5,376 KB
testcase_17 AC 58 ms
5,376 KB
testcase_18 AC 1 ms
5,376 KB
testcase_19 AC 1 ms
5,376 KB
testcase_20 AC 15 ms
5,376 KB
testcase_21 AC 65 ms
5,376 KB
testcase_22 AC 66 ms
5,376 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 64 ms
5,376 KB
testcase_34 AC 64 ms
5,376 KB
testcase_35 AC 65 ms
5,376 KB
testcase_36 AC 65 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <string>
#include <vector>
#include <cmath>
#include <algorithm>
#include <cstdlib>
#include <ctime>
#include <cstdio>
#include <functional>
#include <set>
#include <sstream>
#include <map>
#include <queue>
#include <stack>

using namespace std;


int main()
{
	int n;
	cin>>n;
	unsigned long long _or=0;
	for(int i=0;i<n;i++){
		unsigned long long a;
		cin>>a;
		_or|=a;
	}

	unsigned long long res=1;
	while(_or){
		if(_or%2) res*=2LL;
		_or/=2;
	}

	cout<<res<<endl;

	return 0;
}
0