結果

問題 No.130 XOR Minimax
ユーザー H3PO4H3PO4
提出日時 2024-04-15 09:14:40
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 533 bytes
コンパイル時間 135 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 21,828 KB
最終ジャッジ日時 2024-10-05 02:13:20
合計ジャッジ時間 31,017 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 25 ms
10,752 KB
testcase_02 AC 25 ms
10,752 KB
testcase_03 AC 25 ms
10,624 KB
testcase_04 AC 3,075 ms
12,640 KB
testcase_05 AC 4,064 ms
21,656 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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)
0