結果
問題 | No.2533 A⇒B問題 |
ユーザー |
![]() |
提出日時 | 2023-11-24 11:27:03 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 3 ms / 2,000 ms |
コード長 | 289 bytes |
コンパイル時間 | 2,229 ms |
コンパイル使用メモリ | 190,488 KB |
最終ジャッジ日時 | 2025-02-17 23:35:36 |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 24 |
ソースコード
#include <bits/stdc++.h>using namespace std;void fast_io() {ios::sync_with_stdio(false);std::cin.tie(nullptr);}int main() {fast_io();long long a, b;cin >> a >> b;if ((a & b) == a) {cout << "Yes\n";} else {cout << "No\n";}}