結果

問題 No.1674 Introduction to XOR
ユーザー 杨娵隅杨娵隅
提出日時 2021-09-10 23:41:57
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2 ms / 1,000 ms
コード長 604 bytes
コンパイル時間 2,019 ms
コンパイル使用メモリ 203,156 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-12 05:22:57
合計ジャッジ時間 3,104 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 1 ms
6,940 KB
testcase_11 AC 1 ms
6,944 KB
testcase_12 AC 1 ms
6,944 KB
testcase_13 AC 2 ms
6,940 KB
testcase_14 AC 2 ms
6,944 KB
testcase_15 AC 2 ms
6,940 KB
testcase_16 AC 1 ms
6,940 KB
testcase_17 AC 1 ms
6,940 KB
testcase_18 AC 2 ms
6,944 KB
testcase_19 AC 1 ms
6,940 KB
testcase_20 AC 2 ms
6,940 KB
testcase_21 AC 2 ms
6,944 KB
testcase_22 AC 2 ms
6,944 KB
testcase_23 AC 1 ms
6,944 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function 'void init()':
main.cpp:11:10: warning: iteration 61 invokes undefined behavior [-Waggressive-loop-optimizations]
   11 |     a[i] = a[i - 1] * 2;
      |     ~~~~~^~~~~~~~~~~~~~
main.cpp:9:21: note: within this loop
    9 |   for (int i = 1; i < 63; i ++)
      |                   ~~^~~~

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
ll a[62];
bool flag[62];
void init()
{
  a[0] = 1;
  for (int i = 1; i < 63; i ++)
  {
    a[i] = a[i - 1] * 2; 
  }
}
int main()
{
  init();
  int N; cin >> N;
  vector<ll> A(N);
  for (int i = 0; i < N; i ++) cin >> A[i];
  
  for (int i = 0; i < 63; i ++)
  {
    for (int j = 0; j < N; j ++)
    {
      if (A[j] & a[i]) {flag[i] = false; break;}
      else flag[i] = true;
    }
    if (flag[i]) break;
  }
  for (int i = 0; i < 63; i ++)
  {
    if (flag[i]) 
    {
      cout << a[i] << "\n";
      break;
    }
  }
  return 0;
}
0