結果
問題 | No.699 ペアでチームを作ろう2 |
ユーザー | mkawa2 |
提出日時 | 2020-01-26 09:43:48 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
AC
|
実行時間 | 335 ms / 1,000 ms |
コード長 | 650 bytes |
コンパイル時間 | 482 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 10,752 KB |
最終ジャッジ日時 | 2024-09-14 10:52:09 |
合計ジャッジ時間 | 4,590 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge6 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 29 ms
10,624 KB |
testcase_01 | AC | 29 ms
10,624 KB |
testcase_02 | AC | 31 ms
10,752 KB |
testcase_03 | AC | 30 ms
10,624 KB |
testcase_04 | AC | 50 ms
10,624 KB |
testcase_05 | AC | 283 ms
10,624 KB |
testcase_06 | AC | 279 ms
10,624 KB |
testcase_07 | AC | 316 ms
10,624 KB |
testcase_08 | AC | 334 ms
10,752 KB |
testcase_09 | AC | 325 ms
10,752 KB |
testcase_10 | AC | 335 ms
10,624 KB |
testcase_11 | AC | 335 ms
10,752 KB |
testcase_12 | AC | 329 ms
10,752 KB |
testcase_13 | AC | 328 ms
10,752 KB |
testcase_14 | AC | 332 ms
10,624 KB |
ソースコード
import sys sys.setrecursionlimit(10 ** 6) def II(): return int(sys.stdin.readline()) def LI(): return list(map(int, sys.stdin.readline().split())) def main(): def dfs(xx=[]): if len(xx)==n//2: res=0 for x in xx: res^=x return res i=used.index(False) used[i]=True res=0 for j in range(i+1,n): if used[j]:continue used[j]=True ret=dfs(xx+[aa[i]+aa[j]]) if ret>res:res=ret used[j]=False used[i]=False return res n=II() aa=LI() used=[False]*n print(dfs()) main()