結果
| 問題 |
No.581 XOR
|
| コンテスト | |
| ユーザー |
Gurren47881
|
| 提出日時 | 2017-10-27 22:34:50 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 2,000 ms |
| コード長 | 309 bytes |
| コンパイル時間 | 533 ms |
| コンパイル使用メモリ | 67,828 KB |
| 実行使用メモリ | 5,248 KB |
| 最終ジャッジ日時 | 2024-11-21 21:43:10 |
| 合計ジャッジ時間 | 1,013 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 8 |
ソースコード
#include<iostream>
#include<algorithm>
#include<vector>
#include<string>
#include<utility>
#define REP(i,n) for(int i = 0;i < (n);i++)
#define pb push_back
using namespace std;
const int INF = 1e9;
typedef long long ll;
int main(){
ll a,c;
cin >> a >> c;
ll b = a^c;
cout << b << endl;
return 0;
}
Gurren47881