結果

問題 No.1082 XORのXOR
ユーザー wattaiheiwattaihei
提出日時 2020-06-19 21:27:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 53 ms / 2,000 ms
コード長 194 bytes
コンパイル時間 250 ms
コンパイル使用メモリ 82,428 KB
実行使用メモリ 62,468 KB
最終ジャッジ日時 2024-07-03 13:49:28
合計ジャッジ時間 2,620 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,820 KB
testcase_01 AC 35 ms
51,960 KB
testcase_02 AC 36 ms
52,556 KB
testcase_03 AC 53 ms
61,332 KB
testcase_04 AC 48 ms
61,128 KB
testcase_05 AC 48 ms
60,768 KB
testcase_06 AC 48 ms
62,468 KB
testcase_07 AC 47 ms
61,884 KB
testcase_08 AC 48 ms
61,472 KB
testcase_09 AC 47 ms
60,880 KB
testcase_10 AC 48 ms
60,608 KB
testcase_11 AC 48 ms
61,336 KB
testcase_12 AC 49 ms
61,764 KB
testcase_13 AC 47 ms
61,744 KB
testcase_14 AC 47 ms
61,072 KB
testcase_15 AC 48 ms
61,328 KB
testcase_16 AC 47 ms
60,880 KB
testcase_17 AC 48 ms
62,144 KB
testcase_18 AC 47 ms
60,824 KB
testcase_19 AC 48 ms
61,132 KB
testcase_20 AC 48 ms
60,952 KB
testcase_21 AC 47 ms
61,692 KB
testcase_22 AC 47 ms
60,876 KB
testcase_23 AC 48 ms
60,940 KB
testcase_24 AC 48 ms
61,176 KB
testcase_25 AC 47 ms
62,320 KB
testcase_26 AC 48 ms
61,348 KB
testcase_27 AC 48 ms
61,760 KB
testcase_28 AC 35 ms
52,128 KB
testcase_29 AC 35 ms
52,752 KB
testcase_30 AC 36 ms
52,092 KB
testcase_31 AC 35 ms
53,708 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N = int(input())
A = list(map(int, input().split()))

ans = 0
for i in range(N-1):
    for j in range(i+1, N):
        ans = max(ans, A[i]^A[j])
print(ans)
0