結果
| 問題 |
No.2533 A⇒B問題
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2023-11-10 21:23:09 |
| 言語 | C++17(clang) (17.0.6 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 551 bytes |
| コンパイル時間 | 4,585 ms |
| コンパイル使用メモリ | 163,140 KB |
| 実行使用メモリ | 13,884 KB |
| 最終ジャッジ日時 | 2024-09-26 01:02:01 |
| 合計ジャッジ時間 | 9,288 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | WA * 12 OLE * 2 -- * 10 |
ソースコード
#include <bits/stdc++.h>
#define int long long
using namespace std;
using ll = long long;
void solve();
template<typename ...Args>
void println(Args... args) {
apply([](auto &&... args) { ((cout << args << ' '), ...); }, tuple(args...));
cout << '\n';
}
int32_t main() {
cin.tie(nullptr);
ios_base::sync_with_stdio(false);
int t = 1;
cin >> t;
for (int tc = 0; tc < t; ++tc) {
solve();
}
return 0;
}
void solve() {
int a, b;
cin >> a >> b;
cout << ((a | b) == b ? "Yes" : "No") << '\n';
}