結果

問題 No.581 XOR
ユーザー mtsdmtsd
提出日時 2017-10-27 22:21:59
言語 C++11
(gcc 13.3.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 454 bytes
コンパイル時間 806 ms
コンパイル使用メモリ 70,716 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-21 21:33:36
合計ジャッジ時間 1,304 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 8
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <string>
#include <cmath>
#include <algorithm>
#include <utility>
#include <queue>
#include <set>
#include <map>

using namespace std;
typedef  long long ll;
typedef pair<int,int> PII;
typedef vector<int> VI;
typedef vector<VI> VVI;
#define  MP make_pair
#define  PB push_back
#define inf  1000000007

long long  mod = 1000000007;


int main(){
	ll a,c;
	cin >> a >> c;
	cout << (a^c) << endl;

	return 0;
}
0