結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 203 ms
76,612 KB
testcase_01 AC 142 ms
76,752 KB
testcase_02 AC 362 ms
76,896 KB
testcase_03 AC 141 ms
76,508 KB
testcase_04 AC 381 ms
76,948 KB
testcase_05 AC 433 ms
76,700 KB
testcase_06 AC 427 ms
76,612 KB
testcase_07 AC 423 ms
76,680 KB
testcase_08 AC 418 ms
76,672 KB
testcase_09 AC 415 ms
77,016 KB
testcase_10 AC 421 ms
76,716 KB
testcase_11 AC 441 ms
76,760 KB
testcase_12 AC 433 ms
76,984 KB
testcase_13 AC 426 ms
76,800 KB
testcase_14 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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