結果

問題 No.683 Two Operations No.3
ユーザー 👑 tatyam
提出日時 2018-05-11 22:36:06
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
WA  
実行時間 -
コード長 523 bytes
コンパイル時間 1,823 ms
コンパイル使用メモリ 157,976 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-06-28 08:44:18
合計ジャッジ時間 2,475 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 9 WA * 7
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define ll long long
#define rep(i,l,r) for(ll i=(l);i<(r);i++)
int main(){
    cin.tie(0);
    ios::sync_with_stdio(false);
    ll a,b,c=0;
    cin>>a>>b;
    while(true){
        if(!a||!b){
            cout<<"Yes"<<"\n";
            return 0;
        }
        if(!a&1^(b&1)){
            cout<<"No"<<"\n";
            return 0;
        }
        if(a&1){
            a--;
            b>>=1;
        }else{
            b--;
            a>>=1;
        }
    }
    return 0;
}
0