結果

問題 No.683 Two Operations No.3
ユーザー raven7959raven7959
提出日時 2021-10-10 10:35:46
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 366 bytes
コンパイル時間 279 ms
コンパイル使用メモリ 81,904 KB
実行使用メモリ 79,804 KB
最終ジャッジ日時 2024-09-14 04:52:18
合計ジャッジ時間 1,952 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,164 KB
testcase_01 AC 37 ms
52,368 KB
testcase_02 AC 38 ms
52,944 KB
testcase_03 RE -
testcase_04 AC 37 ms
53,728 KB
testcase_05 WA -
testcase_06 RE -
testcase_07 AC 37 ms
52,736 KB
testcase_08 RE -
testcase_09 AC 37 ms
52,276 KB
testcase_10 AC 37 ms
53,112 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 36 ms
52,220 KB
testcase_14 AC 38 ms
53,080 KB
testcase_15 AC 38 ms
51,812 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

a,b=map(int,input().split())
def check(a,b):
    if a%2==1 and b%2==1:
        return False
    elif a%2+b%2==1:
        return True
    else:
        if a%4!=0 and b%4!=0:
            return False
        else:
            if a%4==0:
                check(a//2,b)
            else:
                check(a,b//2)
if check(a,b):
    print("Yes")
else:
    print("No")
0