結果

問題 No.1674 Introduction to XOR
ユーザー planesplanes
提出日時 2021-09-10 21:42:53
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 496 bytes
コンパイル時間 1,565 ms
コンパイル使用メモリ 166,828 KB
実行使用メモリ 4,384 KB
最終ジャッジ日時 2023-09-02 16:32:35
合計ジャッジ時間 2,700 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <bits/stdc++.h> 
using namespace std;
using ll =long long;
#define all(v) v.begin(),v.end()
 #define rep(i,a,b) for(int i=a;i<b;i++)
#define rrep(i,a,b) for(int i=a;i>=b;i--)

int main() {
  ll N;cin>>N;
  vector<ll> A(N);
  for(ll i=0;i<N;i++) cin>>A[i];
  vector<bool> note(61,true);
  for(ll i=0;i<N;i++) {
    for(ll j=0;j<=60;j++) {
      if(A[i]&(1<<j)) note[j]=false;
    }
  }
ll k=1;
  for(ll i=0;i<61;i++) {
    if(note[i]) {
      break;
    }
    k*=2;
  }
  cout<<k<<endl;
}
0