結果

問題 No.1511 A ? B Problem
ユーザー salil dandriyalsalil dandriyal
提出日時 2021-05-21 22:09:42
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 22 ms / 2,000 ms
コード長 872 bytes
コンパイル時間 2,574 ms
コンパイル使用メモリ 215,816 KB
最終ジャッジ日時 2025-01-21 15:27:11
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 14
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<ext/pb_ds/assoc_container.hpp> 
#include<ext/pb_ds/tree_policy.hpp>
#include<bits/stdc++.h>
#define ll long long
#define pb push_back
using namespace __gnu_pbds;
using namespace std;
typedef tree<string, null_type, less<string>, rb_tree_tag,tree_order_statistics_node_update>
new_data_set;

vector<vector<int>> arr; vector<int> parent,sz ; vector<bool> visited;


int main(){
	ios_base::sync_with_stdio(false);
    cin.tie(NULL); 

    /***********************************/
    
    /*
    int u,v,n,m; cin>>n>>m;
    parent.resize(n); sz.resize(n,1);
    arr.resize(n);  iota(parent.begin(),parent.end(),0); 

    for(int i=0;i<m;i++){
    	cin>>u>>v;  --u;--v;
    	if(find(u)==find(v)){
    		cout<<"cycle detected"<<"\n";
    	}
    	merge(u , v);
    	arr[u].pb(v) ; arr[v].pb(u);
    }
    */
    int a,b;cin>>a>>b;
    cout<<((a|b) - (a&b))<<"\n";
    
}

0