結果

問題 No.3149 find X which satisfies with equlation
ユーザー hen
提出日時 2025-05-20 21:37:34
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 560 bytes
コンパイル時間 1,275 ms
コンパイル使用メモリ 161,936 KB
実行使用メモリ 7,844 KB
最終ジャッジ日時 2025-05-20 21:37:37
合計ジャッジ時間 2,850 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 42 WA * 2
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define rep(i, n) for(int i = 0; i< (int)(n); i++)
using ll = long long;
using ull = unsigned long long;
using vi = vector<int>;
ll INF = 2e18;
#define Yes cout << "Yes" << endl
#define No cout << "No" << endl
#define YN {cout<<"Yes"<<endl;}else{cout<<"No"<<endl;} // true → Yes false → No
// cout << fixed << setprecision(20);

int main() {
    int a,b; cin>>a>>b;
    for(int i=1; i<1000; i++) {
        int t = (a^i);
        if(t==b) {
            cout << i << endl;
            return 0;
        }
    }
}
0