結果

問題 No.581 XOR
ユーザー drazerd
提出日時 2025-03-18 17:33:52
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 170 bytes
コンパイル時間 2,096 ms
コンパイル使用メモリ 191,960 KB
実行使用メモリ 7,324 KB
最終ジャッジ日時 2025-03-18 17:33:55
合計ジャッジ時間 2,937 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 8
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main() {
    long long int a,c;
    cin >> a >>c;
    long long int b = a^c;
    cout << b;
	// your code goes here

}
0