結果

問題 No.2533 A⇒B問題
ユーザー n_nan_na
提出日時 2023-11-18 01:57:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 47 ms / 2,000 ms
コード長 163 bytes
コンパイル時間 404 ms
コンパイル使用メモリ 82,300 KB
実行使用メモリ 53,248 KB
最終ジャッジ日時 2024-09-26 05:37:57
合計ジャッジ時間 2,655 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
53,044 KB
testcase_01 AC 46 ms
53,248 KB
testcase_02 AC 46 ms
51,988 KB
testcase_03 AC 46 ms
52,176 KB
testcase_04 AC 46 ms
52,248 KB
testcase_05 AC 46 ms
52,216 KB
testcase_06 AC 46 ms
52,100 KB
testcase_07 AC 46 ms
52,080 KB
testcase_08 AC 45 ms
52,824 KB
testcase_09 AC 47 ms
52,612 KB
testcase_10 AC 45 ms
53,208 KB
testcase_11 AC 45 ms
52,220 KB
testcase_12 AC 46 ms
53,096 KB
testcase_13 AC 45 ms
53,168 KB
testcase_14 AC 46 ms
52,208 KB
testcase_15 AC 46 ms
51,904 KB
testcase_16 AC 46 ms
52,916 KB
testcase_17 AC 45 ms
51,964 KB
testcase_18 AC 46 ms
52,332 KB
testcase_19 AC 45 ms
52,584 KB
testcase_20 AC 46 ms
52,440 KB
testcase_21 AC 46 ms
52,788 KB
testcase_22 AC 46 ms
52,076 KB
testcase_23 AC 46 ms
52,188 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

A,B = map(int,input().split())

ans = "Yes"
for i in range(40):
    a = (A>>i)&1
    b = (B>>i)&1
    if a == 1 and b == 0:
        ans = "No"
        
print(ans)
0