結果
| 問題 | No.683 Two Operations No.3 |
| コンテスト | |
| ユーザー |
ayaoni
|
| 提出日時 | 2021-01-03 23:01:43 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
MLE
|
| 実行時間 | - |
| コード長 | 772 bytes |
| 記録 | |
| コンパイル時間 | 494 ms |
| コンパイル使用メモリ | 84,992 KB |
| 実行使用メモリ | 1,332,876 KB |
| 最終ジャッジ日時 | 2026-05-01 03:47:27 |
| 合計ジャッジ時間 | 4,175 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 6 MLE * 2 -- * 8 |
ソースコード
import sys
sys.setrecursionlimit(10**7)
def I(): return int(sys.stdin.readline().rstrip())
def MI(): return map(int,sys.stdin.readline().rstrip().split())
def LI(): return list(map(int,sys.stdin.readline().rstrip().split()))
def LI2(): return list(map(int,sys.stdin.readline().rstrip()))
def S(): return sys.stdin.readline().rstrip()
def LS(): return list(sys.stdin.readline().rstrip().split())
def LS2(): return list(sys.stdin.readline().rstrip())
A,B = MI()
def f(X,Y):
if X == Y == 0:
return True
if X < 0 or Y < 0:
return False
if X % 2 == Y % 2 == 1:
return False
if X % 2 == 0 and f(X//2,Y-1):
return True
if Y % 2 == 0 and f(X-1,Y//2):
return True
return False
print('Yes' if f(A,B) else 'No')
ayaoni