結果

問題 No.683 Two Operations No.3
ユーザー tempura_pptempura_pp
提出日時 2018-10-10 01:18:02
言語 C++11
(gcc 11.4.0)
結果
MLE  
実行時間 -
コード長 284 bytes
コンパイル時間 453 ms
コンパイル使用メモリ 53,720 KB
実行使用メモリ 818,048 KB
最終ジャッジ日時 2024-10-12 17:08:24
合計ジャッジ時間 2,346 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include<iostream>
using namespace std;
typedef long long ll;
bool solve(ll a,ll b){
    bool ret=false;
    if(a%2==0)ret|=solve(a/2,b-1);
    if(b%2==0)ret|=solve(a-1,b/2);
    return ret;
}
int main(){
    ll a,b;cin>>a>>b;
    cout<<(solve(a,b)?"Yes":"No")<<endl;
    return 0;
}
0