結果

問題 No.130 XOR Minimax
ユーザー kohei2019kohei2019
提出日時 2021-08-02 22:19:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 292 ms / 5,000 ms
コード長 446 bytes
コンパイル時間 328 ms
コンパイル使用メモリ 82,468 KB
実行使用メモリ 241,812 KB
最終ジャッジ日時 2024-09-16 14:44:52
合計ジャッジ時間 5,762 ms
ジャッジサーバーID
(参考情報)
judge4 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 192 ms
85,068 KB
testcase_01 AC 38 ms
52,544 KB
testcase_02 AC 39 ms
53,968 KB
testcase_03 AC 38 ms
52,816 KB
testcase_04 AC 215 ms
241,812 KB
testcase_05 AC 202 ms
200,996 KB
testcase_06 AC 176 ms
146,684 KB
testcase_07 AC 192 ms
157,660 KB
testcase_08 AC 292 ms
104,824 KB
testcase_09 AC 101 ms
80,464 KB
testcase_10 AC 113 ms
85,816 KB
testcase_11 AC 191 ms
135,292 KB
testcase_12 AC 94 ms
77,980 KB
testcase_13 AC 165 ms
124,788 KB
testcase_14 AC 291 ms
100,636 KB
testcase_15 AC 70 ms
75,592 KB
testcase_16 AC 232 ms
91,312 KB
testcase_17 AC 236 ms
91,392 KB
testcase_18 AC 244 ms
93,680 KB
testcase_19 AC 262 ms
97,808 KB
testcase_20 AC 167 ms
84,000 KB
testcase_21 AC 284 ms
100,472 KB
testcase_22 AC 125 ms
78,216 KB
testcase_23 AC 94 ms
76,484 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

def dfs(ls,p):
    if p < 0:
        return 0
    A = []
    B = []
    T = ls[:]
    for j in T:
        if (j >> p) % 2 == 0:
            A.append(j)
        else:
            B.append(j)
    ans = 0
    if (len(A) == 0) or (len(B) == 0):
        ans = dfs(T,p-1)
    else:
        ans = dfs(A,p-1)
        ans = min(ans,dfs(B,p-1))
        ans += 1 << p
    return ans

print(dfs(lsa,30))
0