結果
| 問題 |
No.3149 find X which satisfies with equlation
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2025-05-23 10:53:22 |
| 言語 | C++23 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 2,000 ms |
| コード長 | 356 bytes |
| コンパイル時間 | 3,004 ms |
| コンパイル使用メモリ | 275,320 KB |
| 実行使用メモリ | 7,848 KB |
| 最終ジャッジ日時 | 2025-05-23 10:53:28 |
| 合計ジャッジ時間 | 4,911 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 44 |
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:10:13: warning: ‘ans’ is used uninitialized [-Wuninitialized]
10 | int x,y,ans;
| ^~~
ソースコード
#include <bits/stdc++.h>
using namespace std;
#define rep(i, n) for (int i = 0; i < (int)(n); i++)
#define all(x) (x).begin(), (x).end()
using ll = long long;
const ll MOD = 998244353;
int main() {
int x,y,ans;
cin >> x >> y;
for (int i =0; i<256;i++){
if ((x ^ i) == y) {
ans=i;
}
}
cout << ans << endl;
}