結果

問題 No.130 XOR Minimax
ユーザー H3PO4H3PO4
提出日時 2024-04-15 09:35:52
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 846 ms / 5,000 ms
コード長 405 bytes
コンパイル時間 253 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 79,668 KB
最終ジャッジ日時 2024-10-05 02:47:43
合計ジャッジ時間 10,361 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 388 ms
15,368 KB
testcase_01 AC 29 ms
10,496 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 29 ms
10,624 KB
testcase_04 AC 257 ms
35,464 KB
testcase_05 AC 504 ms
79,668 KB
testcase_06 AC 424 ms
30,520 KB
testcase_07 AC 590 ms
56,928 KB
testcase_08 AC 846 ms
21,396 KB
testcase_09 AC 96 ms
13,824 KB
testcase_10 AC 133 ms
16,120 KB
testcase_11 AC 368 ms
27,356 KB
testcase_12 AC 63 ms
12,160 KB
testcase_13 AC 298 ms
24,008 KB
testcase_14 AC 727 ms
19,604 KB
testcase_15 AC 37 ms
10,624 KB
testcase_16 AC 523 ms
16,912 KB
testcase_17 AC 539 ms
17,216 KB
testcase_18 AC 576 ms
17,724 KB
testcase_19 AC 677 ms
19,212 KB
testcase_20 AC 348 ms
15,004 KB
testcase_21 AC 711 ms
19,800 KB
testcase_22 AC 179 ms
13,056 KB
testcase_23 AC 76 ms
11,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int, input().split()))

def rec(X, digit):
    if digit == -1:
        return 0
    X0, X1 = [], []
    for x in X:
        if x >> digit & 1:
            X1.append(x ^ (1 << digit))
        else:
            X0.append(x)
    if X0 and X1:
        return (1 << digit) + min(rec(X0, digit - 1), rec(X1, digit - 1))
    else:
        return rec(X, digit - 1)

print(rec(A, 30))
0