結果
問題 | No.699 ペアでチームを作ろう2 |
ユーザー | htensai |
提出日時 | 2020-01-07 12:18:36 |
言語 | Java (openjdk 23) |
結果 |
AC
|
実行時間 | 280 ms / 1,000 ms |
コード長 | 1,279 bytes |
コンパイル時間 | 2,438 ms |
コンパイル使用メモリ | 77,940 KB |
実行使用メモリ | 53,204 KB |
最終ジャッジ日時 | 2024-11-23 00:50:16 |
合計ジャッジ時間 | 6,345 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 135 ms
50,340 KB |
testcase_01 | AC | 132 ms
50,220 KB |
testcase_02 | AC | 147 ms
50,012 KB |
testcase_03 | AC | 131 ms
49,748 KB |
testcase_04 | AC | 175 ms
51,024 KB |
testcase_05 | AC | 272 ms
53,032 KB |
testcase_06 | AC | 275 ms
53,104 KB |
testcase_07 | AC | 274 ms
53,204 KB |
testcase_08 | AC | 274 ms
50,808 KB |
testcase_09 | AC | 271 ms
51,164 KB |
testcase_10 | AC | 271 ms
51,036 KB |
testcase_11 | AC | 274 ms
50,900 KB |
testcase_12 | AC | 276 ms
51,152 KB |
testcase_13 | AC | 276 ms
51,292 KB |
testcase_14 | AC | 280 ms
51,096 KB |
ソースコード
import java.util.*; public class Main { static int n; static int[] arr; static int max = Integer.MIN_VALUE; public static void main(String[] args) { Scanner sc = new Scanner(System.in); n = sc.nextInt(); arr = new int[n]; for (int i = 0; i < n; i++ ){ arr[i] = sc.nextInt(); } search(1, new int[n]); System.out.println(max); } static void search(int count, int[] used) { if (count > n / 2) { int[] base = new int[n / 2 + 1]; for (int i = 0; i < n; i++) { base[used[i]] += arr[i]; } int ans = 0; for (int i = 1; i < base.length; i++) { ans ^= base[i]; } max = Math.max(ans, max); return; } for (int i = count - 1; i < count * 2 - 1; i++) { if (used[i] != 0) { continue; } used[i] = count; for (int j = i + 1; j < n; j++) { if (used[j] != 0) { continue; } used[j] = count; search(count + 1, used); used[j] = 0; } used[i] = 0; } } }