結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 194 ms
76,800 KB
testcase_01 AC 202 ms
76,800 KB
testcase_02 AC 337 ms
76,672 KB
testcase_03 AC 136 ms
76,800 KB
testcase_04 AC 390 ms
76,848 KB
testcase_05 AC 434 ms
76,928 KB
testcase_06 AC 434 ms
76,800 KB
testcase_07 AC 434 ms
76,928 KB
testcase_08 AC 420 ms
76,800 KB
testcase_09 WA -
testcase_10 AC 414 ms
76,852 KB
testcase_11 AC 415 ms
76,800 KB
testcase_12 AC 413 ms
76,824 KB
testcase_13 WA -
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