結果

問題 No.683 Two Operations No.3
ユーザー raven7959raven7959
提出日時 2021-10-10 10:39:09
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 405 bytes
コンパイル時間 326 ms
コンパイル使用メモリ 82,724 KB
実行使用メモリ 53,296 KB
最終ジャッジ日時 2024-09-14 04:55:44
合計ジャッジ時間 1,680 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,696 KB
testcase_01 AC 36 ms
52,672 KB
testcase_02 AC 37 ms
52,880 KB
testcase_03 AC 37 ms
52,536 KB
testcase_04 AC 36 ms
52,424 KB
testcase_05 WA -
testcase_06 AC 36 ms
52,912 KB
testcase_07 AC 38 ms
52,736 KB
testcase_08 AC 38 ms
51,884 KB
testcase_09 AC 36 ms
51,756 KB
testcase_10 AC 36 ms
52,240 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 38 ms
52,268 KB
testcase_14 AC 37 ms
53,296 KB
testcase_15 AC 37 ms
52,188 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

a,b=map(int,input().split())
def check(a,b):
    if a*b==0:
        return True
    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-1)
            else:
                check(a-1,b//2)
if check(a,b):
    print("Yes")
else:
    print("No")
0