結果

問題 No.130 XOR Minimax
ユーザー nebukuro09nebukuro09
提出日時 2016-09-27 17:32:49
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 347 ms / 5,000 ms
コード長 431 bytes
コンパイル時間 646 ms
コンパイル使用メモリ 76,964 KB
実行使用メモリ 197,180 KB
最終ジャッジ日時 2024-09-12 22:41:28
合計ジャッジ時間 6,283 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 221 ms
90,316 KB
testcase_01 AC 72 ms
75,292 KB
testcase_02 AC 73 ms
75,524 KB
testcase_03 AC 74 ms
75,388 KB
testcase_04 AC 223 ms
197,180 KB
testcase_05 AC 204 ms
175,972 KB
testcase_06 AC 210 ms
190,240 KB
testcase_07 AC 201 ms
144,676 KB
testcase_08 AC 347 ms
116,140 KB
testcase_09 AC 126 ms
81,848 KB
testcase_10 AC 142 ms
90,148 KB
testcase_11 AC 228 ms
174,592 KB
testcase_12 AC 119 ms
79,496 KB
testcase_13 AC 202 ms
149,528 KB
testcase_14 AC 329 ms
110,036 KB
testcase_15 AC 100 ms
78,100 KB
testcase_16 AC 265 ms
97,908 KB
testcase_17 AC 272 ms
98,292 KB
testcase_18 AC 272 ms
100,968 KB
testcase_19 AC 316 ms
106,788 KB
testcase_20 AC 213 ms
87,588 KB
testcase_21 AC 324 ms
109,652 KB
testcase_22 AC 158 ms
80,412 KB
testcase_23 AC 125 ms
78,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = input()
a = map(int, raw_input().split())

def rec(L, p):
    if p > 32 or len(L) == 0:
        return 0
    L0 = []
    L1 = []
    b = (1 << (32-p))
    for e in L:
        if e & b:
            L1.append(e)
        else:
            L0.append(e)
    if len(L0) == 0:
        return rec(L1, p+1)
    elif len(L1) == 0:
        return rec(L0, p+1)
    else:
        return b + min(rec(L0, p+1), rec(L1, p+1))

print rec(a, 0)
0