結果

問題 No.683 Two Operations No.3
ユーザー AEnAEn
提出日時 2022-06-12 15:49:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 52 ms / 2,000 ms
コード長 498 bytes
コンパイル時間 426 ms
コンパイル使用メモリ 82,300 KB
実行使用メモリ 62,400 KB
最終ジャッジ日時 2024-09-23 04:04:11
合計ジャッジ時間 2,071 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
54,544 KB
testcase_01 AC 41 ms
54,108 KB
testcase_02 AC 42 ms
54,144 KB
testcase_03 AC 43 ms
54,108 KB
testcase_04 AC 52 ms
62,400 KB
testcase_05 AC 47 ms
61,112 KB
testcase_06 AC 41 ms
53,936 KB
testcase_07 AC 42 ms
54,548 KB
testcase_08 AC 41 ms
53,768 KB
testcase_09 AC 48 ms
60,540 KB
testcase_10 AC 41 ms
53,772 KB
testcase_11 AC 41 ms
54,048 KB
testcase_12 AC 41 ms
53,728 KB
testcase_13 AC 42 ms
54,436 KB
testcase_14 AC 41 ms
54,872 KB
testcase_15 AC 42 ms
54,564 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

A, B = map(int, input().split())

d = deque()
d.append((A, B))

while d:
    a, b = d.popleft()
    if a == 0 or b == 0:
        exit(print('Yes'))
    if a%2==0 and b%2==1:
        p, q = a//2, b-1
        d.append((p, q))
    elif a%2==1 and b%2==0:
        p, q = a-1, b//2
        d.append((p,q))
    elif a%2==0 and b%2==0:
        p, q = a//2, b-1
        d.append((p, q))
        p, q = a-1, b//2
        d.append((p, q))
    else:
        continue
print('No')
0