結果

問題 No.130 XOR Minimax
ユーザー konsin_tokagekonsin_tokage
提出日時 2018-03-31 00:33:55
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 752 ms / 5,000 ms
コード長 349 bytes
コンパイル時間 158 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 21,956 KB
最終ジャッジ日時 2024-09-12 22:51:19
合計ジャッジ時間 8,720 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 352 ms
15,332 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 30 ms
10,880 KB
testcase_03 AC 30 ms
10,880 KB
testcase_04 AC 297 ms
12,656 KB
testcase_05 AC 261 ms
21,676 KB
testcase_06 AC 354 ms
20,560 KB
testcase_07 AC 294 ms
21,804 KB
testcase_08 AC 752 ms
21,956 KB
testcase_09 AC 89 ms
12,032 KB
testcase_10 AC 121 ms
13,056 KB
testcase_11 AC 345 ms
18,964 KB
testcase_12 AC 60 ms
11,520 KB
testcase_13 AC 279 ms
17,352 KB
testcase_14 AC 646 ms
19,872 KB
testcase_15 AC 36 ms
10,752 KB
testcase_16 AC 467 ms
17,048 KB
testcase_17 AC 482 ms
17,356 KB
testcase_18 AC 517 ms
18,036 KB
testcase_19 AC 609 ms
19,356 KB
testcase_20 AC 313 ms
14,992 KB
testcase_21 AC 642 ms
20,072 KB
testcase_22 AC 165 ms
12,544 KB
testcase_23 AC 71 ms
11,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import *
n = int(input())
a = sorted(map(int, input().split()))
def dfs(l, r, i):
    if i < 0:
        return 0
    for m in range(l, r):
        if (a[m]>>i)&1:
            break
    else:
        m += 1
    if m == l or m == r:
        return dfs(l, r, i-1)
    return (1<<i) + min(dfs(l, m, i-1), dfs(m, r, i-1))
print(dfs(0, n, 30))
0