結果
| 問題 | No.683 Two Operations No.3 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2018-05-11 22:31:52 |
| 言語 | PyPy2 (7.3.15) |
| 結果 |
MLE
|
| 実行時間 | - |
| コード長 | 547 bytes |
| 記録 | |
| コンパイル時間 | 135 ms |
| コンパイル使用メモリ | 77,360 KB |
| 最終ジャッジ日時 | 2025-12-04 01:10:38 |
|
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 4 MLE * 1 -- * 11 |
ソースコード
a, b = map(int, raw_input().split())
stack = [(a, b)]
d = set()
while len(stack) > 0:
x, y = stack[-1]
stack.pop()
if x == 0 and y == 0:
print "Yes"
exit()
if (x, y) in d:
continue
if x % 2 == 1 and y % 2 == 1:
continue
d.add((x, y))
if x % 2 == 0:
xx = x / 2
yy = y - 1
if (xx, yy) not in d:
stack.append((xx, yy))
if y % 2 == 0:
xx = x - 1
yy = y / 2
if (xx, yy) not in d:
stack.append((xx, yy))
print "No"