結果

問題 No.184 たのしい排他的論理和(HARD)
ユーザー Lay_ecLay_ec
提出日時 2015-04-16 23:51:12
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 512 bytes
コンパイル時間 1,950 ms
コンパイル使用メモリ 73,604 KB
実行使用メモリ 4,380 KB
最終ジャッジ日時 2023-09-17 16:21:53
合計ジャッジ時間 3,409 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,376 KB
testcase_01 AC 1 ms
4,380 KB
testcase_02 AC 2 ms
4,376 KB
testcase_03 WA -
testcase_04 AC 2 ms
4,380 KB
testcase_05 AC 2 ms
4,376 KB
testcase_06 WA -
testcase_07 AC 1 ms
4,376 KB
testcase_08 AC 43 ms
4,376 KB
testcase_09 AC 10 ms
4,376 KB
testcase_10 AC 33 ms
4,376 KB
testcase_11 AC 24 ms
4,380 KB
testcase_12 AC 50 ms
4,376 KB
testcase_13 AC 53 ms
4,376 KB
testcase_14 AC 31 ms
4,376 KB
testcase_15 AC 58 ms
4,376 KB
testcase_16 AC 48 ms
4,376 KB
testcase_17 AC 52 ms
4,376 KB
testcase_18 AC 2 ms
4,376 KB
testcase_19 AC 2 ms
4,380 KB
testcase_20 AC 14 ms
4,380 KB
testcase_21 AC 59 ms
4,380 KB
testcase_22 AC 60 ms
4,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 58 ms
4,380 KB
testcase_34 AC 57 ms
4,376 KB
testcase_35 AC 59 ms
4,380 KB
testcase_36 AC 59 ms
4,380 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