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