結果

問題 No.683 Two Operations No.3
ユーザー 👑 tatyamtatyam
提出日時 2018-05-11 22:36:06
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 523 bytes
コンパイル時間 3,375 ms
コンパイル使用メモリ 142,832 KB
実行使用メモリ 4,380 KB
最終ジャッジ日時 2023-09-10 17:35:35
合計ジャッジ時間 2,224 ms
ジャッジサーバーID
(参考情報)
judge15 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,380 KB
testcase_01 WA -
testcase_02 AC 1 ms
4,376 KB
testcase_03 AC 2 ms
4,380 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 1 ms
4,380 KB
testcase_07 AC 1 ms
4,380 KB
testcase_08 AC 2 ms
4,380 KB
testcase_09 WA -
testcase_10 AC 1 ms
4,380 KB
testcase_11 AC 1 ms
4,380 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 1 ms
4,380 KB
testcase_15 WA -
権限があれば一括ダウンロードができます

ソースコード

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