結果
問題 | No.1511 A ? B Problem |
ユーザー |
|
提出日時 | 2021-05-21 21:42:57 |
言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 387 bytes |
コンパイル時間 | 2,854 ms |
コンパイル使用メモリ | 158,820 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-10-10 08:15:00 |
合計ジャッジ時間 | 2,870 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 14 |
ソースコード
#include <bits/stdc++.h> #include <math.h> using namespace std; using ll = long long; using pp = pair<int,int>; #define rep(i,n) for(int i = 0;i<n;i++) #define printv(v) for(auto x : v) cout << x << " "; cout << "\n"; // v の要素を表示 #define printv2(v) for(auto x : v) {printv(x);cout << "\n";}; int main() { int A,B;cin >> A >> B; cout << (A|B)-(A&B) << endl; }