結果
問題 | No.698 ペアでチームを作ろう |
ユーザー | tenten |
提出日時 | 2022-08-12 08:31:06 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 108 ms / 1,000 ms |
コード長 | 1,733 bytes |
コンパイル時間 | 2,288 ms |
コンパイル使用メモリ | 78,092 KB |
実行使用メモリ | 52,604 KB |
最終ジャッジ日時 | 2024-09-22 12:44:43 |
合計ジャッジ時間 | 4,184 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 52 ms
50,436 KB |
testcase_01 | AC | 53 ms
50,480 KB |
testcase_02 | AC | 55 ms
50,308 KB |
testcase_03 | AC | 54 ms
50,432 KB |
testcase_04 | AC | 63 ms
50,320 KB |
testcase_05 | AC | 106 ms
52,256 KB |
testcase_06 | AC | 105 ms
52,248 KB |
testcase_07 | AC | 91 ms
52,356 KB |
testcase_08 | AC | 93 ms
52,136 KB |
testcase_09 | AC | 93 ms
52,540 KB |
testcase_10 | AC | 108 ms
52,572 KB |
testcase_11 | AC | 93 ms
52,512 KB |
testcase_12 | AC | 106 ms
52,604 KB |
testcase_13 | AC | 94 ms
52,436 KB |
testcase_14 | AC | 107 ms
52,208 KB |
ソースコード
import java.io.*; import java.util.*; public class Main { static int n; static int[] values; static int max = 0; 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(); } calc(0, new boolean[n], 0); System.out.println(max); } static void calc(int idx, boolean[] used, int v) { if (idx >= n) { max = Math.max(max, v); } for (int i = 0; i < n; i++) { if (used[i]) { continue; } used[i] = true; for (int j = i + 1; j < n; j++) { if (used[j]) { continue; } used[j] = true; calc(idx + 2, used, v + (values[i] ^ values[j])); used[j] = false; } used[i] = false; break; } } } 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 double nextDouble() throws Exception { return Double.parseDouble(next()); } public String next() throws Exception { while (!st.hasMoreTokens()) { st = new StringTokenizer(br.readLine()); } return st.nextToken(); } }