結果

問題 No.1082 XORのXOR
ユーザー d9etd9et
提出日時 2020-06-19 23:33:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 54 ms / 2,000 ms
コード長 111 bytes
コンパイル時間 365 ms
コンパイル使用メモリ 82,956 KB
実行使用メモリ 62,084 KB
最終ジャッジ日時 2024-07-03 15:54:53
合計ジャッジ時間 2,978 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,080 KB
testcase_01 AC 37 ms
52,356 KB
testcase_02 AC 36 ms
52,028 KB
testcase_03 AC 53 ms
60,936 KB
testcase_04 AC 53 ms
60,736 KB
testcase_05 AC 53 ms
60,796 KB
testcase_06 AC 53 ms
60,200 KB
testcase_07 AC 53 ms
61,628 KB
testcase_08 AC 52 ms
60,892 KB
testcase_09 AC 52 ms
60,472 KB
testcase_10 AC 53 ms
60,772 KB
testcase_11 AC 52 ms
61,804 KB
testcase_12 AC 53 ms
60,520 KB
testcase_13 AC 52 ms
61,072 KB
testcase_14 AC 53 ms
60,616 KB
testcase_15 AC 52 ms
60,260 KB
testcase_16 AC 53 ms
60,520 KB
testcase_17 AC 54 ms
60,732 KB
testcase_18 AC 52 ms
62,084 KB
testcase_19 AC 53 ms
60,828 KB
testcase_20 AC 53 ms
61,704 KB
testcase_21 AC 53 ms
61,784 KB
testcase_22 AC 53 ms
60,756 KB
testcase_23 AC 53 ms
62,080 KB
testcase_24 AC 52 ms
61,704 KB
testcase_25 AC 53 ms
61,120 KB
testcase_26 AC 53 ms
61,792 KB
testcase_27 AC 53 ms
60,968 KB
testcase_28 AC 36 ms
52,632 KB
testcase_29 AC 37 ms
52,316 KB
testcase_30 AC 37 ms
52,800 KB
testcase_31 AC 37 ms
53,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
a=list(map(int,input().split()))
ans=0
for i in a:
  for j in a:
    ans=max(ans,i^j)
print(ans)
0