結果

問題 No.2533 A⇒B問題
ユーザー rlangevinrlangevin
提出日時 2023-11-10 21:21:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 49 ms / 2,000 ms
コード長 184 bytes
コンパイル時間 263 ms
コンパイル使用メモリ 82,280 KB
実行使用メモリ 53,552 KB
最終ジャッジ日時 2024-09-26 00:58:22
合計ジャッジ時間 2,167 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
53,192 KB
testcase_01 AC 46 ms
52,696 KB
testcase_02 AC 45 ms
52,080 KB
testcase_03 AC 45 ms
52,908 KB
testcase_04 AC 45 ms
53,384 KB
testcase_05 AC 45 ms
53,060 KB
testcase_06 AC 47 ms
52,384 KB
testcase_07 AC 49 ms
52,480 KB
testcase_08 AC 45 ms
51,944 KB
testcase_09 AC 45 ms
52,228 KB
testcase_10 AC 46 ms
52,984 KB
testcase_11 AC 45 ms
52,024 KB
testcase_12 AC 45 ms
52,000 KB
testcase_13 AC 46 ms
53,552 KB
testcase_14 AC 41 ms
52,964 KB
testcase_15 AC 39 ms
52,884 KB
testcase_16 AC 38 ms
52,236 KB
testcase_17 AC 39 ms
52,148 KB
testcase_18 AC 40 ms
52,428 KB
testcase_19 AC 39 ms
52,364 KB
testcase_20 AC 38 ms
51,964 KB
testcase_21 AC 39 ms
51,776 KB
testcase_22 AC 38 ms
52,448 KB
testcase_23 AC 38 ms
53,040 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

A, B = map(int, input().split())
flag = 1
for i in range(35):
    if (A >> i) & 1:
        if (B >> i) & 1 == 0:
            flag = 0
            
print("Yes") if flag else print("No")
0