結果

問題 No.130 XOR Minimax
ユーザー colognecologne
提出日時 2022-03-02 16:55:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 787 ms / 5,000 ms
コード長 430 bytes
コンパイル時間 319 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 210,136 KB
最終ジャッジ日時 2024-07-16 09:05:33
合計ジャッジ時間 8,423 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 315 ms
82,960 KB
testcase_01 AC 40 ms
51,840 KB
testcase_02 AC 41 ms
51,712 KB
testcase_03 AC 41 ms
51,840 KB
testcase_04 AC 201 ms
210,136 KB
testcase_05 AC 229 ms
158,200 KB
testcase_06 AC 233 ms
136,632 KB
testcase_07 AC 290 ms
144,100 KB
testcase_08 AC 787 ms
98,176 KB
testcase_09 AC 149 ms
78,712 KB
testcase_10 AC 143 ms
84,608 KB
testcase_11 AC 289 ms
123,032 KB
testcase_12 AC 155 ms
78,124 KB
testcase_13 AC 192 ms
113,280 KB
testcase_14 AC 553 ms
94,976 KB
testcase_15 AC 80 ms
75,904 KB
testcase_16 AC 453 ms
87,424 KB
testcase_17 AC 406 ms
88,064 KB
testcase_18 AC 486 ms
89,596 KB
testcase_19 AC 550 ms
93,056 KB
testcase_20 AC 293 ms
82,432 KB
testcase_21 AC 532 ms
94,592 KB
testcase_22 AC 200 ms
77,560 KB
testcase_23 AC 112 ms
75,964 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve(A, b):
    if b == -1:
        return 0
    u = [a for a in A if not(a & (1 << b))]
    d = [a ^ (1 << b) for a in A if a & (1 << b)]

    if len(u) == 0:
        return solve(d, b-1)
    if len(d) == 0:
        return solve(u, b-1)
    return min(solve(d, b-1), solve(u, b-1)) + (1 << b)


def main():
    input()  # N
    *A, = map(int, input().split())
    print(solve(A, 29))


if __name__ == '__main__':
    main()
0