結果

問題 No.130 XOR Minimax
ユーザー titiatitia
提出日時 2022-02-21 01:11:43
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 846 ms / 5,000 ms
コード長 396 bytes
コンパイル時間 110 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 42,420 KB
最終ジャッジ日時 2024-06-29 10:59:56
合計ジャッジ時間 10,044 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 394 ms
15,640 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 29 ms
10,624 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 AC 366 ms
37,252 KB
testcase_05 AC 418 ms
42,420 KB
testcase_06 AC 457 ms
30,616 KB
testcase_07 AC 482 ms
30,452 KB
testcase_08 AC 846 ms
21,696 KB
testcase_09 AC 104 ms
14,080 KB
testcase_10 AC 142 ms
15,984 KB
testcase_11 AC 409 ms
27,964 KB
testcase_12 AC 66 ms
12,160 KB
testcase_13 AC 331 ms
25,312 KB
testcase_14 AC 738 ms
19,864 KB
testcase_15 AC 36 ms
10,624 KB
testcase_16 AC 527 ms
17,036 KB
testcase_17 AC 547 ms
17,284 KB
testcase_18 AC 586 ms
18,032 KB
testcase_19 AC 700 ms
19,084 KB
testcase_20 AC 359 ms
15,160 KB
testcase_21 AC 731 ms
19,812 KB
testcase_22 AC 183 ms
13,056 KB
testcase_23 AC 75 ms
11,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

def calc(c,A):
    if c<0:
        return 0
    
    X=[]
    Y=[]

    for a in A:
        if a & (1<<c) != 0:
            X.append(a)
        else:
            Y.append(a)

    if len(X)==0:
        return calc(c-1,Y)
    elif len(Y)==0:
        return calc(c-1,X)
    else:
        return (1<<c)+min(calc(c-1,X),calc(c-1,Y))

print(calc(32,A))
0