結果
問題 | No.698 ペアでチームを作ろう |
ユーザー | tenten |
提出日時 | 2021-11-02 15:23:51 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 103 ms / 1,000 ms |
コード長 | 1,825 bytes |
コンパイル時間 | 2,318 ms |
コンパイル使用メモリ | 76,768 KB |
実行使用メモリ | 38,904 KB |
最終ジャッジ日時 | 2024-10-11 19:31:48 |
合計ジャッジ時間 | 4,382 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 50 ms
37,044 KB |
testcase_01 | AC | 50 ms
36,928 KB |
testcase_02 | AC | 52 ms
37,120 KB |
testcase_03 | AC | 54 ms
36,936 KB |
testcase_04 | AC | 62 ms
37,184 KB |
testcase_05 | AC | 103 ms
38,856 KB |
testcase_06 | AC | 99 ms
38,420 KB |
testcase_07 | AC | 101 ms
38,532 KB |
testcase_08 | AC | 101 ms
38,752 KB |
testcase_09 | AC | 100 ms
38,824 KB |
testcase_10 | AC | 100 ms
38,876 KB |
testcase_11 | AC | 101 ms
38,368 KB |
testcase_12 | AC | 102 ms
38,712 KB |
testcase_13 | AC | 103 ms
38,884 KB |
testcase_14 | AC | 103 ms
38,904 KB |
ソースコード
import java.io.*; import java.util.*; public class Main { static int n; static int[] values; public static void main(String[] args) throws Exception { Scanner sc = new Scanner(); n = sc.nextInt(); values = new int[n]; for (int i = 0; i < n; i++) { values[i] = sc.nextInt(); } System.out.println(check1(0, new boolean[n])); } static int check1(int idx, boolean[] used) { if (idx == n) { return 0; } int ans = 0; for (int i = 0; i < n; i++) { if (!used[i]) { used[i] = true; ans = check2(idx + 1, used, values[i]); used[i] = false; break; } } return ans; } static int check2(int idx, boolean[] used, int v) { int max = 0; for (int i = 0; i < n; i++) { if (used[i]) { continue; } used[i] = true; max = Math.max(max, (v ^ values[i]) + check1(idx + 1, used)); used[i] = false; } return max; } } class Scanner { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); StringTokenizer st = new StringTokenizer(""); public Scanner() throws Exception { } public int nextInt() throws Exception { return Integer.parseInt(next()); } public long nextLong() throws Exception { return Long.parseLong(next()); } public String nextLine() throws Exception { return br.readLine(); } public String next() throws Exception { if (!st.hasMoreTokens()) { st = new StringTokenizer(br.readLine()); } return st.nextToken(); } }