結果
問題 | No.581 XOR |
ユーザー |
![]() |
提出日時 | 2018-01-21 16:58:10 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 222 bytes |
コンパイル時間 | 709 ms |
コンパイル使用メモリ | 81,752 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-12-25 21:17:14 |
合計ジャッジ時間 | 1,365 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 |
other | AC * 4 WA * 4 |
ソースコード
#include <cmath>#include <string>#include <vector>#include <iomanip>#include <iostream>#include <algorithm>#include <functional>using namespace std;int a, b;int main() {cin >> a >> b;cout << (a ^ b) << endl;}