結果
問題 | No.581 XOR |
ユーザー |
![]() |
提出日時 | 2017-11-25 11:13:06 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 264 bytes |
コンパイル時間 | 596 ms |
コンパイル使用メモリ | 80,052 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-27 09:55:42 |
合計ジャッジ時間 | 1,057 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 |
other | AC * 8 |
ソースコード
#include <iostream> #include <string> #include <vector> #include <algorithm> #include <map> #include <stack> #include <cmath> #include <queue> #include <numeric> int main() { long long a, b; std::cin >> a >> b; std::cout << (a^b) << std::endl; return 0; }