結果

問題 No.130 XOR Minimax
ユーザー Shinya FujitaShinya Fujita
提出日時 2024-12-01 21:26:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 321 ms / 5,000 ms
コード長 524 bytes
コンパイル時間 576 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 134,656 KB
最終ジャッジ日時 2024-12-01 21:26:55
合計ジャッジ時間 6,413 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 193 ms
82,048 KB
testcase_01 AC 42 ms
51,584 KB
testcase_02 AC 42 ms
51,840 KB
testcase_03 AC 42 ms
51,840 KB
testcase_04 AC 67 ms
76,928 KB
testcase_05 AC 163 ms
134,656 KB
testcase_06 AC 168 ms
96,512 KB
testcase_07 AC 221 ms
121,344 KB
testcase_08 AC 286 ms
97,536 KB
testcase_09 AC 105 ms
76,672 KB
testcase_10 AC 119 ms
77,824 KB
testcase_11 AC 186 ms
93,056 KB
testcase_12 AC 97 ms
75,904 KB
testcase_13 AC 165 ms
88,064 KB
testcase_14 AC 303 ms
93,440 KB
testcase_15 AC 77 ms
72,448 KB
testcase_16 AC 246 ms
86,656 KB
testcase_17 AC 235 ms
87,168 KB
testcase_18 AC 254 ms
88,448 KB
testcase_19 AC 287 ms
91,904 KB
testcase_20 AC 176 ms
81,152 KB
testcase_21 AC 321 ms
93,312 KB
testcase_22 AC 126 ms
76,928 KB
testcase_23 AC 93 ms
76,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(10**8)

N = int(input())
A = list(map(int, input().split()))


def dfs(data):
    m = 0
    for a in data:
        m = max(m, a.bit_length())
    if m == 0:
        return 0
    
    large = []
    small = []
    for a in data:
        b = a.bit_length()
        if b == m:
            large.append(a ^ (1 << (m-1)))
        else:
            small.append(a)
    
    res = dfs(large)
    if small:
        res = min(res, dfs(small))
        res += 1 << (m-1)
    return res


print(dfs(A))
0