結果

問題 No.3547 Rurumaru Function Problem
コンテスト
ユーザー nikoro256
提出日時 2026-05-22 22:25:47
言語 PyPy3
(7.3.17)
コンパイル:
pypy3 -mpy_compile _filename_
実行:
pypy3 _filename_
結果
AC  
実行時間 27 ms / 2,000 ms
コード長 397 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 296 ms
コンパイル使用メモリ 85,248 KB
実行使用メモリ 52,096 KB
最終ジャッジ日時 2026-05-22 22:25:49
合計ジャッジ時間 1,864 ms
ジャッジサーバーID
(参考情報)
judge1_1 / judge2_1
純コード判定待ち
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 20
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

N,M=map(int,input().split())
flag = True
x = 0
for i in range(30):
    a = 2**i
    n = N&a
    m = M&a
    if i%2 == 0:
        if m > 0:
            if n == 0:
                flag = False
            x += a
    else:
        if m > 0:
            if n == 0:
                x += a
        else:
            if n > 0:
                flag = False
if not flag:
    print("-1")
    exit()
print(x)
0