結果
| 問題 |
No.2533 A⇒B問題
|
| コンテスト | |
| ユーザー |
Prala
|
| 提出日時 | 2024-08-11 19:46:07 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
AC
|
| 実行時間 | 39 ms / 2,000 ms |
| コード長 | 152 bytes |
| コンパイル時間 | 346 ms |
| コンパイル使用メモリ | 82,560 KB |
| 実行使用メモリ | 52,352 KB |
| 最終ジャッジ日時 | 2024-08-11 19:46:10 |
| 合計ジャッジ時間 | 2,420 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 24 |
ソースコード
A, B = map(int, input().split())
judge = True
for i in range(32):
if (A >> i & 1) and not (B >> i & 1): judge = False
print("Yes" if judge else "No")
Prala