작성일 :

문제 링크

27960번 - 사격 내기

설명

AB 가 각각 얻은 점수가 주어졌을 때, C 가 얻은 점수를 계산하는 문제입니다.

문제의 조건에 따르면, C 의 점수는 AB 둘 중 한 명만 맞춘 과녁에 대해서 점수를 얻습니다.

간단히 논리 XOR 연산을 사용하여 C 의 점수를 계산합니다.


Code

[ C# ]

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
namespace Solution {
  class Program {
    static void Main(string[] args) {

      var input = Console.ReadLine()!.Split(' ');
      var scoreA = int.Parse(input[0]);
      var scoreB = int.Parse(input[1]);

      var scoreC = scoreA ^ scoreB;

      Console.WriteLine(scoreC);

    }
  }
}



[ C++ ]

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include <bits/stdc++.h>

using namespace std;

int main() {
  ios::sync_with_stdio(false);
  cin.tie(nullptr);

  int scoreA, scoreB; cin >> scoreA >> scoreB;

  int scoreC = scoreA ^ scoreB;

  cout << scoreC << "\n";

  return 0;
}