結果

問題 No.1082 XORのXOR
ユーザー FromBooskaFromBooska
提出日時 2023-02-14 20:22:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 50 ms / 2,000 ms
コード長 312 bytes
コンパイル時間 296 ms
コンパイル使用メモリ 82,368 KB
実行使用メモリ 62,256 KB
最終ジャッジ日時 2024-07-17 08:35:40
合計ジャッジ時間 3,104 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,136 KB
testcase_01 AC 36 ms
53,356 KB
testcase_02 AC 36 ms
53,752 KB
testcase_03 AC 48 ms
61,860 KB
testcase_04 AC 49 ms
61,600 KB
testcase_05 AC 48 ms
60,828 KB
testcase_06 AC 47 ms
61,588 KB
testcase_07 AC 48 ms
60,768 KB
testcase_08 AC 48 ms
61,616 KB
testcase_09 AC 49 ms
61,872 KB
testcase_10 AC 49 ms
61,580 KB
testcase_11 AC 48 ms
61,816 KB
testcase_12 AC 49 ms
61,624 KB
testcase_13 AC 48 ms
61,760 KB
testcase_14 AC 50 ms
61,324 KB
testcase_15 AC 48 ms
61,460 KB
testcase_16 AC 50 ms
61,936 KB
testcase_17 AC 47 ms
60,788 KB
testcase_18 AC 48 ms
61,412 KB
testcase_19 AC 49 ms
62,140 KB
testcase_20 AC 48 ms
62,224 KB
testcase_21 AC 48 ms
62,024 KB
testcase_22 AC 49 ms
61,664 KB
testcase_23 AC 49 ms
60,752 KB
testcase_24 AC 48 ms
61,820 KB
testcase_25 AC 49 ms
61,320 KB
testcase_26 AC 50 ms
60,984 KB
testcase_27 AC 49 ms
62,256 KB
testcase_28 AC 37 ms
52,348 KB
testcase_29 AC 36 ms
52,084 KB
testcase_30 AC 35 ms
53,284 KB
testcase_31 AC 35 ms
52,280 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# X = B1^B2^---^Bn-1 = A1^A2^A2^A3^----^An-1^An-1^An = A1^An
# つまり間の項は全部打ち消しあい、A1^Anだけが残る、その最大値が答え

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