結果

問題 No.130 XOR Minimax
ユーザー 37zigen37zigen
提出日時 2016-11-24 19:03:16
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 875 bytes
コンパイル時間 3,076 ms
コンパイル使用メモリ 78,316 KB
実行使用メモリ 63,668 KB
最終ジャッジ日時 2024-05-05 13:03:00
合計ジャッジ時間 21,074 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 103 ms
40,428 KB
testcase_02 RE -
testcase_03 RE -
testcase_04 AC 480 ms
48,672 KB
testcase_05 AC 643 ms
53,488 KB
testcase_06 RE -
testcase_07 WA -
testcase_08 AC 1,301 ms
63,120 KB
testcase_09 RE -
testcase_10 AC 415 ms
47,892 KB
testcase_11 RE -
testcase_12 AC 299 ms
47,968 KB
testcase_13 AC 921 ms
58,352 KB
testcase_14 AC 1,273 ms
63,668 KB
testcase_15 AC 196 ms
45,428 KB
testcase_16 AC 968 ms
62,008 KB
testcase_17 AC 1,045 ms
59,704 KB
testcase_18 AC 1,127 ms
61,420 KB
testcase_19 AC 1,230 ms
62,148 KB
testcase_20 AC 680 ms
49,100 KB
testcase_21 AC 1,346 ms
61,804 KB
testcase_22 WA -
testcase_23 AC 309 ms
47,328 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;

import java.util.*;

public class Q130 {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		long[] a = new long[n];
		for (int i = 0; i < n; ++i) {
			a[i] = sc.nextLong();
		}
		Arrays.sort(a);
		long ans = 0;
		for (int t = 0; t < 100; ++t) {
			for (long i = 32; i >= 0; --i) {// 3=1,1,
				if ((a[n - 1] & (1L << i)) > 0) {
					long[] tmp = Arrays.copyOf(a, n);
					long tmpMax = 0;
					for (int j = 0; j < n; ++j) {
						tmp[j] = a[j] ^ (1L << i);
						tmpMax = Math.max(tmpMax, tmp[j]);
					}
					if (tmpMax == a[n - 1])
						throw new AssertionError();
					if (tmpMax <= a[n - 1]) {
						if ((ans & (1L << i)) > 0)
							throw new AssertionError();
						ans |= 1L << i;
						a = tmp;
						Arrays.sort(a);
						break;
					}
				}
			}
		}
		System.out.println(a[n - 1]);

	}
}
0