結果
問題 | No.130 XOR Minimax |
ユーザー |
|
提出日時 | 2024-04-15 09:14:40 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 533 bytes |
コンパイル時間 | 135 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 21,828 KB |
最終ジャッジ日時 | 2024-10-05 02:13:20 |
合計ジャッジ時間 | 31,017 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 2 WA * 19 |
ソースコード
N = int(input()) A = list(map(int, input().split())) def f(x): # 全部の要素をx以下にできるか for i in range(31, -1, -1): b = 0 for a in A: if (a >> i) & 1: b |= 1 else: b |= 2 if b != 3 and (x >> i) & 1: return True if b == 3 and not (x >> i) & 1: return False return True l, r = -1, 10**9 + 1 while r - l > 1: m = (l + r) // 2 if f(m): r = m else: l = m print(r)