結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 11 ms
6,940 KB
testcase_02 AC 11 ms
6,940 KB
testcase_03 AC 11 ms
6,940 KB
testcase_04 AC 274 ms
8,060 KB
testcase_05 AC 377 ms
14,992 KB
testcase_06 AC 289 ms
14,992 KB
testcase_07 WA -
testcase_08 AC 337 ms
14,992 KB
testcase_09 AC 52 ms
7,552 KB
testcase_10 AC 73 ms
8,320 KB
testcase_11 AC 242 ms
13,452 KB
testcase_12 WA -
testcase_13 AC 190 ms
12,104 KB
testcase_14 AC 287 ms
13,316 KB
testcase_15 AC 13 ms
6,940 KB
testcase_16 AC 207 ms
11,392 KB
testcase_17 AC 189 ms
11,400 KB
testcase_18 WA -
testcase_19 AC 257 ms
13,140 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 66 ms
7,808 KB
testcase_23 AC 27 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(raw_input())
a = map(int,raw_input().split())
mn = max(a)
x = 0
for i in xrange(31):
    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