結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 162 ms
76,556 KB
testcase_01 AC 118 ms
76,800 KB
testcase_02 AC 251 ms
76,584 KB
testcase_03 AC 118 ms
76,548 KB
testcase_04 AC 291 ms
77,096 KB
testcase_05 AC 304 ms
76,800 KB
testcase_06 AC 316 ms
76,744 KB
testcase_07 AC 312 ms
76,736 KB
testcase_08 WA -
testcase_09 AC 312 ms
76,872 KB
testcase_10 AC 311 ms
76,604 KB
testcase_11 AC 306 ms
77,156 KB
testcase_12 AC 307 ms
76,800 KB
testcase_13 AC 312 ms
76,672 KB
testcase_14 AC 306 ms
76,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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