結果

問題 No.130 XOR Minimax
ユーザー roiti46roiti46
提出日時 2015-02-25 17:08:29
言語 Python2
(2.7.18)
結果
WA  
実行時間 -
コード長 377 bytes
コンパイル時間 91 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 14,996 KB
最終ジャッジ日時 2024-06-23 23:25:38
合計ジャッジ時間 5,133 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 11 ms
6,272 KB
testcase_02 AC 13 ms
6,272 KB
testcase_03 AC 13 ms
6,144 KB
testcase_04 AC 262 ms
7,936 KB
testcase_05 AC 284 ms
14,996 KB
testcase_06 AC 473 ms
14,992 KB
testcase_07 WA -
testcase_08 AC 296 ms
14,992 KB
testcase_09 AC 55 ms
7,424 KB
testcase_10 AC 74 ms
8,320 KB
testcase_11 WA -
testcase_12 AC 30 ms
6,912 KB
testcase_13 AC 192 ms
11,972 KB
testcase_14 AC 237 ms
13,584 KB
testcase_15 AC 14 ms
6,272 KB
testcase_16 AC 167 ms
11,300 KB
testcase_17 AC 171 ms
11,528 KB
testcase_18 AC 184 ms
11,912 KB
testcase_19 AC 220 ms
13,136 KB
testcase_20 AC 110 ms
9,468 KB
testcase_21 AC 229 ms
13,524 KB
testcase_22 WA -
testcase_23 AC 25 ms
6,656 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def rec(x,i,mn):
    if i < 0: return mn
    res = mn
    xx = x | (1 << i)
    tmp = max(ai^xx for ai in a)
    if   tmp  < mn: res = min(res, rec(xx,i-1,tmp))
    elif tmp == mn: res = min(res, rec(xx,i-1,mn), rec(x,i-1,mn))
    else:           res = min(res, rec(x,i-1,mn))
    return res

N = int(raw_input())
a = map(int,raw_input().split())
mn = max(a)
print rec(0,30,mn)
0