結果

問題 No.683 Two Operations No.3
ユーザー 👑 rin204rin204
提出日時 2022-07-06 07:30:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 39 ms / 2,000 ms
コード長 417 bytes
コンパイル時間 208 ms
コンパイル使用メモリ 82,008 KB
実行使用メモリ 53,344 KB
最終ジャッジ日時 2024-12-18 01:42:37
合計ジャッジ時間 1,573 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,068 KB
testcase_01 AC 35 ms
52,816 KB
testcase_02 AC 37 ms
53,168 KB
testcase_03 AC 36 ms
52,680 KB
testcase_04 AC 38 ms
53,344 KB
testcase_05 AC 37 ms
52,208 KB
testcase_06 AC 38 ms
52,340 KB
testcase_07 AC 36 ms
52,860 KB
testcase_08 AC 39 ms
52,480 KB
testcase_09 AC 38 ms
52,064 KB
testcase_10 AC 37 ms
53,068 KB
testcase_11 AC 36 ms
52,884 KB
testcase_12 AC 35 ms
52,504 KB
testcase_13 AC 37 ms
53,284 KB
testcase_14 AC 35 ms
52,964 KB
testcase_15 AC 36 ms
53,140 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

memo = {}
def dfs(a, b):
    if (a, b) in memo:
        return memo[(a, b)]

    if a == 0 or b == 0:
        return True
    if not a & 1 and dfs(a >> 1, b - 1):
        memo[(a, b)] = True
        return True
    if not b & 1 and dfs(a - 1, b >> 1):
        memo[(a, b)] = True
        return True
    memo[(a, b)] = False
    return False

if dfs(*map(int, input().split())):
    print("Yes")
else:
    print("No")
0