結果

問題 No.1082 XORのXOR
ユーザー d9etd9et
提出日時 2020-06-19 23:33:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 90 ms / 2,000 ms
コード長 111 bytes
コンパイル時間 1,431 ms
コンパイル使用メモリ 87,300 KB
実行使用メモリ 76,608 KB
最終ジャッジ日時 2023-09-16 15:48:57
合計ジャッジ時間 5,518 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 72 ms
71,344 KB
testcase_01 AC 73 ms
71,336 KB
testcase_02 AC 72 ms
71,216 KB
testcase_03 AC 88 ms
76,520 KB
testcase_04 AC 87 ms
76,532 KB
testcase_05 AC 87 ms
76,408 KB
testcase_06 AC 87 ms
76,544 KB
testcase_07 AC 88 ms
76,504 KB
testcase_08 AC 88 ms
76,488 KB
testcase_09 AC 87 ms
76,216 KB
testcase_10 AC 87 ms
76,516 KB
testcase_11 AC 87 ms
76,444 KB
testcase_12 AC 87 ms
76,516 KB
testcase_13 AC 87 ms
76,608 KB
testcase_14 AC 85 ms
76,448 KB
testcase_15 AC 87 ms
76,364 KB
testcase_16 AC 88 ms
76,392 KB
testcase_17 AC 88 ms
76,544 KB
testcase_18 AC 87 ms
76,448 KB
testcase_19 AC 87 ms
76,608 KB
testcase_20 AC 89 ms
76,552 KB
testcase_21 AC 88 ms
76,196 KB
testcase_22 AC 87 ms
76,488 KB
testcase_23 AC 88 ms
76,340 KB
testcase_24 AC 88 ms
76,428 KB
testcase_25 AC 88 ms
76,532 KB
testcase_26 AC 88 ms
76,224 KB
testcase_27 AC 90 ms
76,224 KB
testcase_28 AC 71 ms
71,084 KB
testcase_29 AC 71 ms
71,484 KB
testcase_30 AC 71 ms
70,976 KB
testcase_31 AC 72 ms
71,276 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