結果

問題 No.130 XOR Minimax
ユーザー convexineqconvexineq
提出日時 2020-12-05 00:34:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 208 ms / 5,000 ms
コード長 405 bytes
コンパイル時間 456 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 146,656 KB
最終ジャッジ日時 2024-09-15 09:22:15
合計ジャッジ時間 4,843 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
87,808 KB
testcase_01 AC 40 ms
51,968 KB
testcase_02 AC 40 ms
51,840 KB
testcase_03 AC 40 ms
51,840 KB
testcase_04 AC 57 ms
68,992 KB
testcase_05 AC 66 ms
75,264 KB
testcase_06 AC 187 ms
141,696 KB
testcase_07 AC 208 ms
146,656 KB
testcase_08 AC 142 ms
112,128 KB
testcase_09 AC 103 ms
78,080 KB
testcase_10 AC 112 ms
83,456 KB
testcase_11 AC 163 ms
114,176 KB
testcase_12 AC 94 ms
76,672 KB
testcase_13 AC 154 ms
110,080 KB
testcase_14 AC 171 ms
107,008 KB
testcase_15 AC 58 ms
63,232 KB
testcase_16 AC 145 ms
95,488 KB
testcase_17 AC 146 ms
96,128 KB
testcase_18 AC 154 ms
99,072 KB
testcase_19 AC 167 ms
103,808 KB
testcase_20 AC 123 ms
85,888 KB
testcase_21 AC 172 ms
106,752 KB
testcase_22 AC 105 ms
78,336 KB
testcase_23 AC 91 ms
76,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve(a,i):
    if len(a) == 1:
        return 0
    b0 = []
    b1 = []
    for ai in a:
        if ai>>i&1: b1.append(ai)
        else: b0.append(ai)
    if not b0:
        return solve(b1,i-1)
    elif not b1:
        return solve(b0,i-1)
    else:
        return min(solve(b0,i-1),solve(b1,i-1)) + (1<<i)
    

n = int(input())
a = list(set(map(int,input().split())))
n = len(a)
print(solve(a,30))
0