結果

問題 No.130 XOR Minimax
ユーザー konsin_tokagekonsin_tokage
提出日時 2018-03-30 23:44:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 285 ms / 5,000 ms
コード長 376 bytes
コンパイル時間 341 ms
コンパイル使用メモリ 82,408 KB
実行使用メモリ 217,560 KB
最終ジャッジ日時 2024-09-12 22:50:49
合計ジャッジ時間 5,276 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 181 ms
84,080 KB
testcase_01 AC 38 ms
52,192 KB
testcase_02 AC 41 ms
53,152 KB
testcase_03 AC 40 ms
52,488 KB
testcase_04 AC 200 ms
217,560 KB
testcase_05 AC 192 ms
178,332 KB
testcase_06 AC 170 ms
133,488 KB
testcase_07 AC 190 ms
146,620 KB
testcase_08 AC 285 ms
102,876 KB
testcase_09 AC 95 ms
78,144 KB
testcase_10 AC 107 ms
83,780 KB
testcase_11 AC 185 ms
129,688 KB
testcase_12 AC 89 ms
77,016 KB
testcase_13 AC 160 ms
119,616 KB
testcase_14 AC 269 ms
98,872 KB
testcase_15 AC 70 ms
75,868 KB
testcase_16 AC 226 ms
89,472 KB
testcase_17 AC 228 ms
90,432 KB
testcase_18 AC 238 ms
91,900 KB
testcase_19 AC 269 ms
96,108 KB
testcase_20 AC 175 ms
82,976 KB
testcase_21 AC 275 ms
98,896 KB
testcase_22 AC 126 ms
77,084 KB
testcase_23 AC 95 ms
76,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = list(map(int, input().split()))
def dfs(a, i):
    if i < 0:
        return 0
    x = []
    y = []
    for j in a:
        if j&(1<<i) == 0:
            x.append(j)
        else:
            y.append(j)
    if not x:
        return dfs(y, i-1)
    elif not y:
        return dfs(x, i-1)
    return (1<<i) + min(dfs(x, i-1), dfs(y, i-1))
print(dfs(a, 30))
0