結果

問題 No.130 XOR Minimax
ユーザー lllllll88938494lllllll88938494
提出日時 2023-05-09 10:32:24
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 665 bytes
コンパイル時間 265 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 337,296 KB
最終ジャッジ日時 2024-11-25 22:25:00
合計ジャッジ時間 116,288 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 AC 39 ms
142,464 KB
testcase_02 AC 37 ms
148,864 KB
testcase_03 AC 38 ms
311,904 KB
testcase_04 AC 99 ms
172,032 KB
testcase_05 AC 214 ms
96,896 KB
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 AC 4,166 ms
91,296 KB
testcase_10 TLE -
testcase_11 TLE -
testcase_12 AC 1,993 ms
337,296 KB
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(10**6)
n = int(input())
a = list(map(int,input().split()))

c=[[0,0] for i in range(31)]
for i in a:
    t=bin(i)[2:][::-1]
    for j in range(len(t)):
        c[j][int(t[j])] += 1

cnt = 0
for i,j in c:
    if i + j == 0:
        break
    cnt+=1

lis=[]
def  cal(x,ind):
    if ind == cnt:
        lis.append(int(x[::-1],2))
        return
    o,i=c[ind][0],c[ind][1]
    
    if o == n:
        cal(x+'0',ind+1)
    elif i == n:
        cal(x+'1',ind+1)
    else:
        cal(x+'0',ind+1)
        cal(x+'1',ind+1)
        
cal('',0)
A=10**18
for x in lis:
    t=0
    for i in a:
        t=max(i^x,t)
    A=min(A,t)
    
print(A)
0