結果
| 問題 | No.581 XOR | 
| コンテスト | |
| ユーザー |  nanophoto12 | 
| 提出日時 | 2017-10-27 22:21:14 | 
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) | 
| 結果 | 
                                AC
                                 
                             | 
| 実行時間 | 2 ms / 2,000 ms | 
| コード長 | 533 bytes | 
| コンパイル時間 | 723 ms | 
| コンパイル使用メモリ | 89,388 KB | 
| 実行使用メモリ | 6,820 KB | 
| 最終ジャッジ日時 | 2024-11-21 21:31:33 | 
| 合計ジャッジ時間 | 1,137 ms | 
| ジャッジサーバーID (参考情報) | judge2 / judge3 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 1 | 
| other | AC * 8 | 
ソースコード
#include <cmath>
#include <vector>
#include <list>
#include <map>
#include <set>
#include <functional>
#include <queue>
#include <iostream>
#include <string.h>
#include <iomanip>
#include <algorithm>
#include <functional>
#include <cstdint>
#include <climits>
#include <unordered_set>
#include <sstream>
#include <stack>
using namespace std;
typedef long long int ll;
typedef pair<ll,ll> pii;
typedef tuple<ll,ll,ll> t3;
using namespace std;
int main()
{
    ll a,c;
    cin >> a >> c;
    cout << (a^c) << endl;
    return 0;
}
            
            
            
        