結果

問題 No.130 XOR Minimax
ユーザー rlangevinrlangevin
提出日時 2023-11-28 00:04:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 582 ms / 5,000 ms
コード長 394 bytes
コンパイル時間 275 ms
コンパイル使用メモリ 82,572 KB
実行使用メモリ 164,516 KB
最終ジャッジ日時 2024-09-26 12:42:34
合計ジャッジ時間 9,081 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 289 ms
111,988 KB
testcase_01 AC 40 ms
53,080 KB
testcase_02 AC 43 ms
52,508 KB
testcase_03 AC 40 ms
52,744 KB
testcase_04 AC 59 ms
70,320 KB
testcase_05 AC 68 ms
76,596 KB
testcase_06 AC 468 ms
164,516 KB
testcase_07 AC 456 ms
161,396 KB
testcase_08 AC 582 ms
154,084 KB
testcase_09 AC 114 ms
81,828 KB
testcase_10 AC 141 ms
91,188 KB
testcase_11 AC 316 ms
130,604 KB
testcase_12 AC 108 ms
79,136 KB
testcase_13 AC 278 ms
119,080 KB
testcase_14 AC 544 ms
146,624 KB
testcase_15 AC 76 ms
76,148 KB
testcase_16 AC 412 ms
128,472 KB
testcase_17 AC 431 ms
128,724 KB
testcase_18 AC 448 ms
134,172 KB
testcase_19 AC 519 ms
139,532 KB
testcase_20 AC 287 ms
107,340 KB
testcase_21 AC 548 ms
150,188 KB
testcase_22 AC 167 ms
82,268 KB
testcase_23 AC 102 ms
77,860 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def f(A, d):
    if d < 0:
        return 0
    L = [[], []]
    for i in range(len(A)):
        L[(A[i] >> d) & 1].append(A[i]^((1 << d)*((A[i] >> d) & 1)))
    if len(L[0]) == 0:
        return f(L[1], d-1)
    if len(L[1]) == 0:
        return f(L[0], d-1)
    return (1 << d) + min(f(L[0], d-1), f(L[1], d-1))
    
N = int(input())
A = list(set(map(int, input().split())))

print(f(A, 65))
0