結果
| 問題 | No.2533 A⇒B問題 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2023-11-10 21:21:37 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
AC
|
| 実行時間 | 119 ms / 2,000 ms |
| コード長 | 451 bytes |
| 記録 | |
| コンパイル時間 | 385 ms |
| コンパイル使用メモリ | 82,460 KB |
| 実行使用メモリ | 85,996 KB |
| 最終ジャッジ日時 | 2024-09-26 00:58:53 |
| 合計ジャッジ時間 | 4,140 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 24 |
ソースコード
import collections,sys,math,functools,operator,itertools,bisect,heapq,decimal,string,time,random
#sys.setrecursionlimit(10**9)
#sys.set_int_max_str_digits(0)
#n = int(input())
#alist = list(map(int,input().split()))
#alist = []
#s = input()
a,b = map(int,input().split())
#for i in range(n):
# alist.append(list(map(int,input().split())))
ans = 'Yes'
for i in range(50):
if (a >> i) & 1 == 1 and (b >> i) & 1 == 0:
ans = 'No'
print(ans)