結果

問題 No.581 XOR
ユーザー nukachanukacha
提出日時 2017-11-10 12:50:37
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 151 bytes
コンパイル時間 526 ms
コンパイル使用メモリ 64,272 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-11-24 11:47:26
合計ジャッジ時間 868 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 8
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>

int main() {
    using namespace std;
    long long a, c;
    cin >> a >> c;
    long long res = a ^ c;
    cout << res << endl;
}
0