結果
| 問題 | No.3547 Rurumaru Function Problem |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2026-05-23 11:28:48 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 258 bytes |
| 記録 | |
| コンパイル時間 | 336 ms |
| コンパイル使用メモリ | 85,724 KB |
| 実行使用メモリ | 54,408 KB |
| 最終ジャッジ日時 | 2026-05-23 11:29:02 |
| 合計ジャッジ時間 | 3,931 ms |
|
ジャッジサーバーID (参考情報) |
judge1_1 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 WA * 1 |
| other | AC * 6 WA * 14 |
ソースコード
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)