結果

問題 No.2533 A⇒B問題
ユーザー flygonflygon
提出日時 2023-11-10 21:21:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 44 ms / 2,000 ms
コード長 308 bytes
コンパイル時間 153 ms
コンパイル使用メモリ 82,388 KB
実行使用メモリ 56,072 KB
最終ジャッジ日時 2024-09-26 00:59:20
合計ジャッジ時間 1,834 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
55,180 KB
testcase_01 AC 44 ms
55,188 KB
testcase_02 AC 44 ms
54,764 KB
testcase_03 AC 41 ms
55,004 KB
testcase_04 AC 43 ms
56,072 KB
testcase_05 AC 41 ms
54,784 KB
testcase_06 AC 40 ms
54,840 KB
testcase_07 AC 39 ms
55,564 KB
testcase_08 AC 41 ms
55,684 KB
testcase_09 AC 40 ms
55,556 KB
testcase_10 AC 41 ms
54,732 KB
testcase_11 AC 43 ms
55,180 KB
testcase_12 AC 38 ms
54,856 KB
testcase_13 AC 40 ms
54,812 KB
testcase_14 AC 40 ms
54,488 KB
testcase_15 AC 43 ms
54,504 KB
testcase_16 AC 42 ms
54,584 KB
testcase_17 AC 38 ms
54,960 KB
testcase_18 AC 38 ms
54,080 KB
testcase_19 AC 40 ms
54,440 KB
testcase_20 AC 38 ms
54,116 KB
testcase_21 AC 38 ms
54,932 KB
testcase_22 AC 39 ms
55,456 KB
testcase_23 AC 41 ms
55,404 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(5*10**5)
input = sys.stdin.readline
from collections import defaultdict, deque, Counter
from heapq import heappop, heappush
from bisect import bisect_left, bisect_right
from math import gcd

n,m = map(int,input().split())
if n & m == n:
    print('Yes')
else:
    print('No')
0