結果

問題 No.130 XOR Minimax
ユーザー NoneNone
提出日時 2021-03-24 22:51:41
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 213 bytes
コンパイル時間 250 ms
コンパイル使用メモリ 82,384 KB
実行使用メモリ 206,572 KB
最終ジャッジ日時 2024-11-26 23:30:54
合計ジャッジ時間 4,661 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 39 ms
51,736 KB
testcase_02 AC 39 ms
51,696 KB
testcase_03 AC 39 ms
51,872 KB
testcase_04 AC 60 ms
76,400 KB
testcase_05 AC 204 ms
206,256 KB
testcase_06 AC 151 ms
144,988 KB
testcase_07 WA -
testcase_08 AC 208 ms
205,980 KB
testcase_09 AC 58 ms
76,160 KB
testcase_10 AC 65 ms
82,944 KB
testcase_11 AC 132 ms
130,464 KB
testcase_12 WA -
testcase_13 AC 111 ms
115,840 KB
testcase_14 AC 183 ms
187,904 KB
testcase_15 AC 45 ms
60,416 KB
testcase_16 AC 141 ms
147,892 KB
testcase_17 AC 141 ms
148,096 KB
testcase_18 WA -
testcase_19 AC 170 ms
173,736 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 67 ms
78,720 KB
testcase_23 AC 53 ms
73,088 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
A=list(map(int, input().split()))
M=max(A)
L=M.bit_length()
for i in range(L):
    B=[]
    for a in A:
        B.append(a^(1<<i))
    temp=max(B)
    if temp<=M:
        M=temp
        A=B
print(M)
0