結果
| 問題 | No.2533 A⇒B問題 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2023-11-10 21:21:37 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
AC
|
| 実行時間 | 132 ms / 2,000 ms |
| コード長 | 451 bytes |
| 記録 | |
| コンパイル時間 | 175 ms |
| コンパイル使用メモリ | 85,504 KB |
| 実行使用メモリ | 86,272 KB |
| 最終ジャッジ日時 | 2026-04-13 03:45:36 |
| 合計ジャッジ時間 | 3,451 ms |
|
ジャッジサーバーID (参考情報) |
judge1_1 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| 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)