結果
| 問題 | No.2533 A⇒B問題 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2023-11-10 21:20:51 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.89.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 2,000 ms |
| コード長 | 222 bytes |
| 記録 | |
| コンパイル時間 | 2,293 ms |
| コンパイル使用メモリ | 192,288 KB |
| 最終ジャッジ日時 | 2025-02-17 20:17:29 |
|
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 24 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
int main(){
ios_base::sync_with_stdio(false);
cin.tie(nullptr);
int a,b; cin >> a >> b;
if(b == (a|b)) cout << "Yes" << endl;
else cout << "No" << endl;
}