結果
| 問題 | No.2533 A⇒B問題 |
| コンテスト | |
| ユーザー |
Prala
|
| 提出日時 | 2024-08-11 19:46:07 |
| 言語 | PyPy3 (7.3.23 + ACL) |
| 結果 |
AC
不安定
|
| 実行時間 | 63 ms / 2,000 ms |
| + 616µs | |
| コード長 | 152 bytes |
| 記録 | |
| コンパイル時間 | 283 ms |
| コンパイル使用メモリ | 95,980 KB |
| 実行使用メモリ | 79,104 KB |
| 最終ジャッジ日時 | 2026-08-25 00:13:45 |
| 合計ジャッジ時間 | 3,791 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| 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