結果

問題 No.683 Two Operations No.3
ユーザー 👑 KazunKazun
提出日時 2021-02-14 17:23:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 40 ms / 2,000 ms
コード長 334 bytes
コンパイル時間 344 ms
コンパイル使用メモリ 82,284 KB
実行使用メモリ 54,432 KB
最終ジャッジ日時 2024-07-22 03:14:47
合計ジャッジ時間 1,516 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,996 KB
testcase_01 AC 38 ms
53,484 KB
testcase_02 AC 38 ms
52,448 KB
testcase_03 AC 38 ms
52,696 KB
testcase_04 AC 39 ms
53,416 KB
testcase_05 AC 40 ms
54,432 KB
testcase_06 AC 38 ms
52,496 KB
testcase_07 AC 40 ms
52,600 KB
testcase_08 AC 40 ms
53,896 KB
testcase_09 AC 40 ms
52,988 KB
testcase_10 AC 38 ms
52,256 KB
testcase_11 AC 39 ms
52,712 KB
testcase_12 AC 40 ms
53,548 KB
testcase_13 AC 38 ms
52,828 KB
testcase_14 AC 39 ms
52,552 KB
testcase_15 AC 39 ms
53,072 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def f(A,B):
    if A==0 or B==0:
        return True
    if A&1==B&1==1:
        return False
    if (A,B) in Memo:
        return Memo[(A,B)]

    X=False
    if A&1==0:
        X|=f(A//2,B-1)
    if B&1==0:
        X|=f(A-1,B//2)

    Memo[(A,B)]=X
    return X

Memo={}
A,B=map(int,input().split())
print("Yes" if f(A,B) else "No")
0