結果
問題 |
No.581 XOR
|
ユーザー |
|
提出日時 | 2019-11-20 13:49:42 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 268 bytes |
コンパイル時間 | 714 ms |
コンパイル使用メモリ | 79,440 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-10-06 05:13:18 |
合計ジャッジ時間 | 1,253 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 |
other | AC * 4 WA * 4 |
ソースコード
#include <iostream> #include <vector> #include <algorithm> #include <queue> #include <map> #include <math.h> using namespace std; typedef long long int ll; int main(){ cin.tie(nullptr); ios::sync_with_stdio(false); int a,b; cin >> a >> b; cout << (a^b) << endl; }