結果

問題 No.130 XOR Minimax
ユーザー tktk_snsntktk_snsn
提出日時 2020-12-25 20:34:36
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 796 ms / 5,000 ms
コード長 593 bytes
コンパイル時間 86 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 42,228 KB
最終ジャッジ日時 2024-09-22 14:03:52
合計ジャッジ時間 9,890 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 372 ms
16,080 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 AC 268 ms
37,280 KB
testcase_05 AC 372 ms
42,228 KB
testcase_06 AC 413 ms
30,704 KB
testcase_07 AC 446 ms
30,216 KB
testcase_08 AC 796 ms
20,332 KB
testcase_09 AC 96 ms
14,336 KB
testcase_10 AC 131 ms
16,076 KB
testcase_11 AC 358 ms
28,164 KB
testcase_12 AC 62 ms
12,416 KB
testcase_13 AC 294 ms
25,428 KB
testcase_14 AC 685 ms
19,396 KB
testcase_15 AC 35 ms
10,752 KB
testcase_16 AC 492 ms
17,364 KB
testcase_17 AC 509 ms
17,564 KB
testcase_18 AC 551 ms
18,356 KB
testcase_19 AC 646 ms
18,724 KB
testcase_20 AC 334 ms
15,544 KB
testcase_21 AC 686 ms
19,252 KB
testcase_22 AC 174 ms
12,928 KB
testcase_23 AC 72 ms
11,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.buffer.readline
sys.setrecursionlimit(10 ** 7)

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


def rec(X, val, d):
    if d < 0:
        global ans
        ans = min(ans, val)
        return

    zero = []
    one = []
    for a in X:
        if (a >> d) & 1:
            one.append(a)
        else:
            zero.append(a)
    if one and zero:
        val += 1 << d
        rec(one, val, d - 1)
        rec(zero, val, d - 1)
    elif zero:
        rec(zero, val, d - 1)
    elif one:
        rec(one, val, d - 1)


rec(A, 0, 32)
print(ans)
0