結果

問題 No.130 XOR Minimax
ユーザー nebukuro09nebukuro09
提出日時 2016-09-27 17:33:31
言語 Python2
(2.7.18)
結果
AC  
実行時間 1,039 ms / 5,000 ms
コード長 431 bytes
コンパイル時間 613 ms
コンパイル使用メモリ 7,072 KB
実行使用メモリ 35,556 KB
最終ジャッジ日時 2024-09-12 22:42:28
合計ジャッジ時間 11,094 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 468 ms
10,048 KB
testcase_01 AC 12 ms
6,816 KB
testcase_02 AC 11 ms
6,944 KB
testcase_03 AC 12 ms
6,944 KB
testcase_04 AC 361 ms
33,080 KB
testcase_05 AC 373 ms
35,556 KB
testcase_06 AC 454 ms
24,164 KB
testcase_07 AC 457 ms
23,784 KB
testcase_08 AC 1,039 ms
15,056 KB
testcase_09 AC 90 ms
9,136 KB
testcase_10 AC 131 ms
10,572 KB
testcase_11 AC 393 ms
21,340 KB
testcase_12 AC 51 ms
7,676 KB
testcase_13 AC 320 ms
18,224 KB
testcase_14 AC 864 ms
13,512 KB
testcase_15 AC 20 ms
6,940 KB
testcase_16 AC 620 ms
11,328 KB
testcase_17 AC 644 ms
11,720 KB
testcase_18 AC 697 ms
12,104 KB
testcase_19 AC 817 ms
13,204 KB
testcase_20 AC 407 ms
9,532 KB
testcase_21 AC 858 ms
13,460 KB
testcase_22 AC 199 ms
7,824 KB
testcase_23 AC 68 ms
6,940 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