結果

問題 No.1082 XORのXOR
ユーザー uni_pythonuni_python
提出日時 2020-06-19 21:42:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 55 ms / 2,000 ms
コード長 361 bytes
コンパイル時間 190 ms
コンパイル使用メモリ 82,312 KB
実行使用メモリ 61,820 KB
最終ジャッジ日時 2024-07-03 14:10:14
合計ジャッジ時間 2,599 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,664 KB
testcase_01 AC 37 ms
52,180 KB
testcase_02 AC 37 ms
52,216 KB
testcase_03 AC 53 ms
60,524 KB
testcase_04 AC 52 ms
61,076 KB
testcase_05 AC 52 ms
60,100 KB
testcase_06 AC 53 ms
60,736 KB
testcase_07 AC 53 ms
60,948 KB
testcase_08 AC 53 ms
61,152 KB
testcase_09 AC 53 ms
60,376 KB
testcase_10 AC 53 ms
61,220 KB
testcase_11 AC 52 ms
59,924 KB
testcase_12 AC 55 ms
60,264 KB
testcase_13 AC 52 ms
61,048 KB
testcase_14 AC 52 ms
60,644 KB
testcase_15 AC 53 ms
61,408 KB
testcase_16 AC 52 ms
59,736 KB
testcase_17 AC 52 ms
60,564 KB
testcase_18 AC 52 ms
60,232 KB
testcase_19 AC 52 ms
61,676 KB
testcase_20 AC 53 ms
61,428 KB
testcase_21 AC 53 ms
60,168 KB
testcase_22 AC 53 ms
61,472 KB
testcase_23 AC 52 ms
60,488 KB
testcase_24 AC 52 ms
60,176 KB
testcase_25 AC 52 ms
60,668 KB
testcase_26 AC 52 ms
61,820 KB
testcase_27 AC 53 ms
60,944 KB
testcase_28 AC 35 ms
52,600 KB
testcase_29 AC 35 ms
52,816 KB
testcase_30 AC 35 ms
52,256 KB
testcase_31 AC 35 ms
52,460 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=sys.stdin.readline
def I(): return int(input())
def MI(): return map(int, input().split())
def LI(): return list(map(int, input().split()))
mod=10**9+7

def main():
    N=I()
    A=LI()
    ans=0
    for i in range(N):
        for j in range(N):
            temp=A[i]^A[j]
            ans=max(ans,temp)
            
    print(ans)
    


main()
0