結果

問題 No.698 ペアでチームを作ろう
ユーザー lllllll88938494lllllll88938494
提出日時 2022-09-22 20:41:50
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 229 bytes
コンパイル時間 286 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 77,184 KB
最終ジャッジ日時 2024-06-01 18:01:08
合計ジャッジ時間 3,928 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
76,928 KB
testcase_01 AC 107 ms
76,928 KB
testcase_02 AC 175 ms
76,800 KB
testcase_03 AC 106 ms
76,672 KB
testcase_04 AC 190 ms
77,056 KB
testcase_05 AC 199 ms
76,672 KB
testcase_06 AC 201 ms
76,928 KB
testcase_07 WA -
testcase_08 AC 204 ms
76,672 KB
testcase_09 AC 204 ms
76,928 KB
testcase_10 AC 207 ms
77,184 KB
testcase_11 WA -
testcase_12 AC 204 ms
77,056 KB
testcase_13 WA -
testcase_14 AC 201 ms
77,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from random import shuffle
n=int(input())
a=list(map(int,input().split()))
ans=0
for i in range(100000):
    shuffle(a)
    cnt=0
    for i in range(0,n,2):
        cnt+= a[i]^a[i+1]

    ans=max(ans,cnt)
        
print(ans)     
0