結果

問題 No.581 XOR
ユーザー __eggshell
提出日時 2017-12-20 18:00:23
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
WA  
実行時間 -
コード長 156 bytes
コンパイル時間 408 ms
コンパイル使用メモリ 52,968 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-12-16 07:07:09
合計ジャッジ時間 924 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 4 WA * 4
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <string>
#include <iostream>

using namespace std;

int main() {
    unsigned int a,b;
    cin >> a >> b;
    cout << (a ^ b);
}
0