結果

問題 No.581 XOR
ユーザー Gurren47881
提出日時 2017-10-27 22:31:31
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 377 bytes
コンパイル時間 659 ms
コンパイル使用メモリ 68,352 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-11-21 21:40:12
合計ジャッジ時間 9,063 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 4 WA * 4
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<algorithm>
#include<vector>
#include<string>
#include<utility>
#define REP(i,n) for(int i = 0;i < (n);i++)
#define pb push_back
using namespace std;
const int INF = 1e9;
typedef long long ll;

int main(){
  int a,c;
  cin >> a >> c;
  int b = 0;
  while(1){
    if((a^b) == c){
      cout << b << endl;
      break;
    }
    b++;
  }
  return 0;
}
0