結果
| 問題 |
No.2533 A⇒B問題
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2023-11-10 23:08:06 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 205 bytes |
| コンパイル時間 | 1,403 ms |
| コンパイル使用メモリ | 164,944 KB |
| 実行使用メモリ | 5,376 KB |
| 最終ジャッジ日時 | 2024-09-26 02:10:24 |
| 合計ジャッジ時間 | 2,125 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 15 WA * 9 |
ソースコード
#include "bits/stdc++.h"
using namespace std;
#define int long long
int32_t main() {
cin.tie(0)->sync_with_stdio(0);
int a, b;
cin >> a >> b;
cout << (__lg(a) == __lg(b) ? "Yes" : "No");
}