結果

問題 No.130 XOR Minimax
ユーザー kohei2019kohei2019
提出日時 2021-08-02 22:08:01
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 333 bytes
コンパイル時間 188 ms
コンパイル使用メモリ 82,260 KB
実行使用メモリ 110,452 KB
最終ジャッジ日時 2024-09-16 14:44:30
合計ジャッジ時間 3,388 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 39 ms
52,224 KB
testcase_02 AC 38 ms
51,456 KB
testcase_03 AC 37 ms
51,712 KB
testcase_04 AC 89 ms
103,168 KB
testcase_05 AC 97 ms
109,568 KB
testcase_06 AC 99 ms
105,728 KB
testcase_07 WA -
testcase_08 AC 108 ms
109,440 KB
testcase_09 AC 50 ms
67,328 KB
testcase_10 AC 54 ms
71,040 KB
testcase_11 WA -
testcase_12 AC 49 ms
63,744 KB
testcase_13 AC 77 ms
90,752 KB
testcase_14 AC 89 ms
101,888 KB
testcase_15 AC 44 ms
59,264 KB
testcase_16 AC 76 ms
89,856 KB
testcase_17 AC 78 ms
90,496 KB
testcase_18 AC 81 ms
93,048 KB
testcase_19 AC 87 ms
99,200 KB
testcase_20 AC 66 ms
79,232 KB
testcase_21 AC 91 ms
101,888 KB
testcase_22 WA -
testcase_23 AC 46 ms
63,104 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
lsa = list(map(int,input().split()))
# 上からビットを立てるか否かを決めていく貪欲法。

v = 0
for i in range(30,-1,-1):
    c = 1<<i
    m1 = max(lsa)
    lsb = lsa[:]
    for j in range(N):
        lsb[j] ^= c
    m2 = max(lsb)
    if m1 > m2:
        v += c
        lsa = lsb

print(max(lsa))
0