結果

問題 No.3547 Rurumaru Function Problem
コンテスト
ユーザー S142857
提出日時 2026-05-23 11:28:48
言語 PyPy3
(7.3.17)
コンパイル:
pypy3 -mpy_compile _filename_
実行:
pypy3 _filename_
結果
WA  
実行時間 -
コード長 258 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 296 ms
コンパイル使用メモリ 85,120 KB
実行使用メモリ 52,096 KB
最終ジャッジ日時 2026-05-23 11:28:56
合計ジャッジ時間 7,329 ms
ジャッジサーバーID
(参考情報)
judge2_1 / judge1_1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2 WA * 1
other AC * 6 WA * 14
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

N, M = map(int, input().split())

res = 0
for i in range(30):
	if M & (1 << i):
		if N & (1 << i):
			if not i & 1:
				res |= 1 << i
		else:
			res |= 1 << i
	elif (not i & 1) and (N & (1 << i)) and not (M & (1 << i)):
	    print(-1)
	    exit()

print(res)
0