結果

問題 No.130 XOR Minimax
ユーザー NoneNone
提出日時 2021-03-24 23:01:25
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 404 bytes
コンパイル時間 270 ms
コンパイル使用メモリ 82,068 KB
実行使用メモリ 207,228 KB
最終ジャッジ日時 2024-11-26 23:31:23
合計ジャッジ時間 4,087 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 39 ms
51,712 KB
testcase_02 AC 39 ms
51,968 KB
testcase_03 AC 40 ms
51,712 KB
testcase_04 WA -
testcase_05 AC 205 ms
206,680 KB
testcase_06 AC 158 ms
145,520 KB
testcase_07 WA -
testcase_08 AC 208 ms
200,648 KB
testcase_09 AC 62 ms
76,304 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 52 ms
70,272 KB
testcase_13 WA -
testcase_14 AC 188 ms
188,784 KB
testcase_15 AC 48 ms
60,928 KB
testcase_16 AC 137 ms
145,112 KB
testcase_17 AC 139 ms
145,180 KB
testcase_18 AC 153 ms
160,000 KB
testcase_19 AC 171 ms
173,948 KB
testcase_20 AC 100 ms
112,952 KB
testcase_21 AC 187 ms
188,404 KB
testcase_22 WA -
testcase_23 AC 53 ms
72,704 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
A=list(map(int, input().split()))
A0=A[:]
M=max(A)
L=M.bit_length()
for i in range(L)[::-1]:
    B=[]
    for a in A:
        B.append(a^(1<<i))
    temp=max(B)
    if temp<=M:
        M=temp
        A=B
if A==A0:
    M=10**18
    for i in range(L)[::-1]:
        B=[]
        for a in A0:
            B.append(a^(1<<i))
        temp=max(B)
        if temp<=M:
            M=temp

print(M)
0