結果
| 問題 | No.2533 A⇒B問題 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2023-11-10 21:21:37 |
| 言語 | PyPy3 (7.3.23 + ACL) |
| 結果 |
AC
不安定
|
| 実行時間 | 218 ms / 2,000 ms |
| + 785µs | |
| コード長 | 451 bytes |
| 記録 | |
| コンパイル時間 | 443 ms |
| コンパイル使用メモリ | 95,436 KB |
| 実行使用メモリ | 92,428 KB |
| 最終ジャッジ日時 | 2026-09-04 11:26:04 |
| 合計ジャッジ時間 | 7,283 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / 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)