結果

問題 No.1298 OR XOR
ユーザー m_tsubasam_tsubasa
提出日時 2020-11-27 21:54:28
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 498 bytes
コンパイル時間 2,050 ms
コンパイル使用メモリ 194,256 KB
最終ジャッジ日時 2025-01-16 07:03:54
ジャッジサーバーID
(参考情報)
judge3 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 13
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int n;
vector<int> v;

int main() {
  cin >> n;
  for (int i = 0; i < 30; ++i)
    if (n >> i & 1) v.push_back(i);
  if (v.size() < 2)
    cout << "-1 -1 -1" << endl;
  else {
    int res = 0;
    for (auto p : v) res |= 1 << p;
    cout << res;
    for (int i = 0; i < 2; ++i) {
      int now = res;
      for (int j = 0; j < v.size(); ++j)
        if (j % 2 == i) now ^= 1 << v[j];
      cout << " " << now;
    }
    cout << endl;
  }
  return 0;
}
0