結果

問題 No.1082 XORのXOR
ユーザー O2MTO2MT
提出日時 2020-12-15 00:18:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 128 ms / 2,000 ms
コード長 167 bytes
コンパイル時間 299 ms
コンパイル使用メモリ 82,236 KB
実行使用メモリ 216,776 KB
最終ジャッジ日時 2024-09-20 01:02:48
合計ジャッジ時間 4,709 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
53,164 KB
testcase_01 AC 35 ms
52,224 KB
testcase_02 AC 36 ms
52,432 KB
testcase_03 AC 128 ms
214,648 KB
testcase_04 AC 123 ms
213,852 KB
testcase_05 AC 124 ms
214,644 KB
testcase_06 AC 123 ms
215,760 KB
testcase_07 AC 124 ms
215,572 KB
testcase_08 AC 122 ms
215,752 KB
testcase_09 AC 122 ms
216,012 KB
testcase_10 AC 123 ms
214,840 KB
testcase_11 AC 123 ms
214,856 KB
testcase_12 AC 123 ms
214,740 KB
testcase_13 AC 124 ms
214,520 KB
testcase_14 AC 124 ms
214,100 KB
testcase_15 AC 125 ms
215,896 KB
testcase_16 AC 124 ms
215,060 KB
testcase_17 AC 127 ms
215,004 KB
testcase_18 AC 125 ms
215,280 KB
testcase_19 AC 123 ms
214,560 KB
testcase_20 AC 124 ms
214,632 KB
testcase_21 AC 124 ms
215,864 KB
testcase_22 AC 123 ms
215,492 KB
testcase_23 AC 125 ms
216,776 KB
testcase_24 AC 123 ms
215,404 KB
testcase_25 AC 125 ms
215,820 KB
testcase_26 AC 123 ms
214,864 KB
testcase_27 AC 124 ms
216,148 KB
testcase_28 AC 35 ms
53,156 KB
testcase_29 AC 35 ms
52,512 KB
testcase_30 AC 35 ms
52,548 KB
testcase_31 AC 35 ms
52,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int,input().split()))
bit_list = []
for i in range(N):
    for j in range(i+1,N):
        bit_list.append(A[i]^A[j])
print(max(bit_list))
0