結果

問題 No.1082 XORのXOR
ユーザー yansi819yansi819
提出日時 2024-05-10 08:29:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 52 ms / 2,000 ms
コード長 156 bytes
コンパイル時間 492 ms
コンパイル使用メモリ 82,268 KB
実行使用メモリ 62,304 KB
最終ジャッジ日時 2024-12-20 03:48:04
合計ジャッジ時間 3,137 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,416 KB
testcase_01 AC 38 ms
52,392 KB
testcase_02 AC 39 ms
52,816 KB
testcase_03 AC 51 ms
61,760 KB
testcase_04 AC 51 ms
60,624 KB
testcase_05 AC 51 ms
61,672 KB
testcase_06 AC 52 ms
61,020 KB
testcase_07 AC 52 ms
61,232 KB
testcase_08 AC 52 ms
62,068 KB
testcase_09 AC 50 ms
62,040 KB
testcase_10 AC 52 ms
61,328 KB
testcase_11 AC 52 ms
61,344 KB
testcase_12 AC 52 ms
61,396 KB
testcase_13 AC 52 ms
60,688 KB
testcase_14 AC 52 ms
61,556 KB
testcase_15 AC 51 ms
61,412 KB
testcase_16 AC 51 ms
61,124 KB
testcase_17 AC 50 ms
61,360 KB
testcase_18 AC 51 ms
61,764 KB
testcase_19 AC 50 ms
61,604 KB
testcase_20 AC 51 ms
61,764 KB
testcase_21 AC 50 ms
61,416 KB
testcase_22 AC 52 ms
61,624 KB
testcase_23 AC 52 ms
62,304 KB
testcase_24 AC 51 ms
61,008 KB
testcase_25 AC 51 ms
61,812 KB
testcase_26 AC 50 ms
61,408 KB
testcase_27 AC 50 ms
61,256 KB
testcase_28 AC 40 ms
52,528 KB
testcase_29 AC 40 ms
53,208 KB
testcase_30 AC 39 ms
52,736 KB
testcase_31 AC 40 ms
52,688 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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