結果

問題 No.130 XOR Minimax
ユーザー NoneNone
提出日時 2021-03-25 16:45:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 301 ms / 5,000 ms
コード長 447 bytes
コンパイル時間 356 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 218,112 KB
最終ジャッジ日時 2024-11-27 02:36:32
合計ジャッジ時間 5,301 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 185 ms
88,576 KB
testcase_01 AC 38 ms
51,584 KB
testcase_02 AC 39 ms
52,096 KB
testcase_03 AC 35 ms
51,712 KB
testcase_04 AC 185 ms
218,112 KB
testcase_05 AC 201 ms
175,104 KB
testcase_06 AC 164 ms
145,024 KB
testcase_07 AC 184 ms
142,592 KB
testcase_08 AC 301 ms
112,256 KB
testcase_09 AC 98 ms
78,720 KB
testcase_10 AC 107 ms
83,840 KB
testcase_11 AC 169 ms
130,304 KB
testcase_12 AC 88 ms
77,568 KB
testcase_13 AC 154 ms
120,320 KB
testcase_14 AC 275 ms
109,056 KB
testcase_15 AC 77 ms
75,776 KB
testcase_16 AC 211 ms
97,024 KB
testcase_17 AC 217 ms
97,280 KB
testcase_18 AC 228 ms
100,992 KB
testcase_19 AC 250 ms
105,344 KB
testcase_20 AC 168 ms
86,528 KB
testcase_21 AC 268 ms
109,184 KB
testcase_22 AC 119 ms
77,696 KB
testcase_23 AC 103 ms
76,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(10 ** 9)

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

def dfs(array, i):
    if i<0:return 0
    zero=[]
    one=[]
    for a in array:
        if (a>>i)&1:
            one.append(a^(1<<i))
        else:
            zero.append(a)

    if not one:
        return dfs(array,i-1)
    elif not zero:
        return dfs(array,i-1)
    else:
        return (1<<i)+min(dfs(one,i-1),dfs(zero,i-1))

print(dfs(A,32))
0