0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

AtCoderログ:0066 - ABC 213 A

Last updated at Posted at 2021-08-10

問題

問題文

$0$ 以上 $255$ 以下の整数 $A,B$ が与えられます。$A {\rm xor} C = B$ となる
$0$ 以上の整数 $C$ を求めてください。
なお、そのような $C$ はただ $1$ つ存在し、$0$ 以上 $255$ 以下であることが証明されます。

制約

・$0 \le A,B \le 255$
・入力に含まれる値は全て整数である

回答

回答1 (AC)

問題文より $0 \le C \le 255$ になることが保証されているので、$C$ に関するループを回せば良いでしょう。なお、C++ では a と b の xor は a^b で求められます。コードは以下のようになりました。

abc213a-1.cpp
#include <bits/stdc++.h>
using namespace std;
 
int main() {
  int a, b;
  cin >> a >> b;

  for ( int c=0; c<256; c++ ) {
    if ( (a^c)==b ) {
      cout << c << endl;
      break;
    }
  }
}

回答2 (AC)

xor の持つ性質として次の2つが有名です:(1) $0$ との xor は値が変わらない、つまり $A$ xor $0$ = $A$。(2) 自分自身との xor の結果は必ず $0$ になる、つまり $A$ xor $A = 0$。
これらの性質を利用して、与えられた式を変形します。与えられた式 $A$ xor $C=B$ の両辺に $A$ を xor すると、$A$ xor $A$ xor $C = A$ xor $B$ となり、$0$ xor $C = A$ xor $B$ つまり $C=A$ xor $B$ となります。つまり、求める値 $C$ は $A$ xor $B$ に等しいことがわかりました。
この等式を利用したコードは以下のようになりました。

abc213a-2.cpp
#include <bits/stdc++.h>
using namespace std;
 
int main() {
  int a, b;
  cin >> a >> b;

  cout << (a^b) << endl;
}

調べたこと

AtCoder の解説公式解説

回答1,回答2の両方が紹介されていました。

リンク

前後の記事

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?