結果

問題 No.130 XOR Minimax
ユーザー roiti46roiti46
提出日時 2015-02-25 16:46:34
言語 Python2
(2.7.18)
結果
WA  
実行時間 -
コード長 216 bytes
コンパイル時間 359 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 14,992 KB
最終ジャッジ日時 2024-06-23 23:22:14
合計ジャッジ時間 5,334 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 11 ms
6,812 KB
testcase_02 AC 11 ms
6,940 KB
testcase_03 AC 10 ms
6,940 KB
testcase_04 AC 264 ms
8,064 KB
testcase_05 AC 365 ms
14,992 KB
testcase_06 AC 281 ms
14,868 KB
testcase_07 WA -
testcase_08 AC 328 ms
14,992 KB
testcase_09 AC 50 ms
7,552 KB
testcase_10 AC 70 ms
8,320 KB
testcase_11 WA -
testcase_12 AC 30 ms
6,940 KB
testcase_13 AC 188 ms
12,104 KB
testcase_14 AC 280 ms
13,512 KB
testcase_15 AC 14 ms
6,940 KB
testcase_16 AC 202 ms
11,296 KB
testcase_17 AC 188 ms
11,400 KB
testcase_18 AC 214 ms
12,044 KB
testcase_19 AC 254 ms
13,140 KB
testcase_20 AC 131 ms
9,464 KB
testcase_21 AC 263 ms
13,528 KB
testcase_22 WA -
testcase_23 AC 28 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(raw_input())
a = map(int,raw_input().split())
mn = max(a)
x = 0
for i in xrange(30,-1,-1):
    xx = x | (1 << i)
    if max(ai^xx for ai in a) < mn:
        mn = max(ai^xx for ai in a)
        x = xx
print mn
0