結果

問題 No.698 ペアでチームを作ろう
ユーザー lllllll88938494lllllll88938494
提出日時 2022-09-22 20:44:00
言語 PyPy3
(7.3.15)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 229 bytes
コンパイル時間 378 ms
コンパイル使用メモリ 82,204 KB
実行使用メモリ 77,056 KB
最終ジャッジ日時 2024-06-01 18:02:03
合計ジャッジ時間 8,190 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 238 ms
76,536 KB
testcase_01 AC 168 ms
76,672 KB
testcase_02 AC 449 ms
76,784 KB
testcase_03 AC 166 ms
76,844 KB
testcase_04 AC 492 ms
76,932 KB
testcase_05 AC 526 ms
77,056 KB
testcase_06 AC 546 ms
76,576 KB
testcase_07 AC 525 ms
77,040 KB
testcase_08 AC 558 ms
76,716 KB
testcase_09 AC 534 ms
77,004 KB
testcase_10 AC 544 ms
77,012 KB
testcase_11 AC 542 ms
76,664 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 539 ms
76,812 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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