結果

問題 No.130 XOR Minimax
ユーザー ああいいああいい
提出日時 2022-03-30 17:49:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 326 ms / 5,000 ms
コード長 462 bytes
コンパイル時間 284 ms
コンパイル使用メモリ 82,596 KB
実行使用メモリ 217,664 KB
最終ジャッジ日時 2024-11-15 08:13:26
合計ジャッジ時間 5,659 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 198 ms
84,096 KB
testcase_01 AC 39 ms
52,224 KB
testcase_02 AC 39 ms
51,712 KB
testcase_03 AC 38 ms
52,096 KB
testcase_04 AC 208 ms
217,664 KB
testcase_05 AC 189 ms
178,348 KB
testcase_06 AC 169 ms
132,188 KB
testcase_07 AC 184 ms
146,260 KB
testcase_08 AC 326 ms
102,528 KB
testcase_09 AC 98 ms
78,176 KB
testcase_10 AC 105 ms
83,984 KB
testcase_11 AC 182 ms
129,288 KB
testcase_12 AC 85 ms
77,056 KB
testcase_13 AC 171 ms
119,468 KB
testcase_14 AC 304 ms
98,004 KB
testcase_15 AC 71 ms
75,760 KB
testcase_16 AC 233 ms
89,984 KB
testcase_17 AC 244 ms
89,928 KB
testcase_18 AC 258 ms
92,544 KB
testcase_19 AC 285 ms
95,536 KB
testcase_20 AC 186 ms
82,892 KB
testcase_21 AC 294 ms
97,836 KB
testcase_22 AC 126 ms
77,056 KB
testcase_23 AC 92 ms
76,544 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

def calc(now,l,b):
    if b == -1:
        return now
    one = []
    zero = []
    mask = 1 << b
    for i in l:
        if i & mask:
            one.append(i)
        else:
            zero.append(i)
    if len(one) == 0 or len(zero) == 0:
        return calc(now,l,b-1)
    else:
        t1 = calc(now | mask,one,b-1)
        t2 = calc(now | mask,zero,b - 1)
        return min(t1,t2)
print(calc(0,a,30))
0