結果
| 問題 | No.581 XOR | 
| コンテスト | |
| ユーザー |  | 
| 提出日時 | 2021-08-27 00:42:21 | 
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) | 
| 結果 | 
                                WA
                                 
                             | 
| 実行時間 | - | 
| コード長 | 132 bytes | 
| コンパイル時間 | 1,626 ms | 
| コンパイル使用メモリ | 158,356 KB | 
| 実行使用メモリ | 6,820 KB | 
| 最終ジャッジ日時 | 2024-11-18 23:55:36 | 
| 合計ジャッジ時間 | 1,787 ms | 
| ジャッジサーバーID (参考情報) | judge1 / judge2 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 1 | 
| other | AC * 4 WA * 4 | 
ソースコード
#include<bits/stdc++.h>
using namespace std;
int main(){
    int a,b;
    cin >> a >> b;
    int ans=a^b;
    cout << ans << endl;
}
            
            
            
        