結果
問題 | No.683 Two Operations No.3 |
ユーザー | 👑 Kazun |
提出日時 | 2021-02-14 17:21:42 |
言語 | PyPy3 (7.3.15) |
結果 |
RE
|
実行時間 | - |
コード長 | 313 bytes |
コンパイル時間 | 155 ms |
コンパイル使用メモリ | 82,352 KB |
実行使用メモリ | 81,256 KB |
最終ジャッジ日時 | 2024-07-22 03:09:12 |
合計ジャッジ時間 | 2,276 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 47 ms
55,980 KB |
testcase_01 | AC | 45 ms
54,848 KB |
testcase_02 | AC | 49 ms
55,956 KB |
testcase_03 | AC | 44 ms
55,048 KB |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | AC | 46 ms
56,840 KB |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | AC | 45 ms
55,252 KB |
testcase_11 | AC | 46 ms
56,620 KB |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | AC | 46 ms
56,348 KB |
testcase_15 | RE | - |
ソースコード
from functools import lru_cache @lru_cache(maxsize=10**6) def f(A,B): if A==B==0: return True if A&1==B&1==1: return False X=False if A&1==0: X|=f(A//2,B-1) if B&1==0: X|=f(A-1,B//2) return X A,B=map(int,input().split()) print("Yes" if f(A,B) else "No")