結果

問題 No.184 たのしい排他的論理和(HARD)
ユーザー GrenacheGrenache
提出日時 2016-07-10 23:21:57
言語 Java21
(openjdk 21)
結果
AC  
実行時間 323 ms / 5,000 ms
コード長 1,965 bytes
コンパイル時間 4,437 ms
コンパイル使用メモリ 78,680 KB
実行使用メモリ 56,492 KB
最終ジャッジ日時 2024-07-04 12:11:36
合計ジャッジ時間 12,123 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
37,352 KB
testcase_01 AC 51 ms
37,168 KB
testcase_02 AC 51 ms
37,108 KB
testcase_03 AC 52 ms
37,192 KB
testcase_04 AC 53 ms
37,328 KB
testcase_05 AC 51 ms
37,284 KB
testcase_06 AC 51 ms
37,268 KB
testcase_07 AC 51 ms
37,256 KB
testcase_08 AC 273 ms
50,964 KB
testcase_09 AC 153 ms
41,960 KB
testcase_10 AC 278 ms
49,404 KB
testcase_11 AC 240 ms
45,332 KB
testcase_12 AC 295 ms
52,132 KB
testcase_13 AC 299 ms
52,260 KB
testcase_14 AC 264 ms
49,500 KB
testcase_15 AC 318 ms
56,244 KB
testcase_16 AC 286 ms
50,828 KB
testcase_17 AC 297 ms
51,828 KB
testcase_18 AC 52 ms
37,284 KB
testcase_19 AC 52 ms
37,060 KB
testcase_20 AC 208 ms
50,724 KB
testcase_21 AC 321 ms
56,160 KB
testcase_22 AC 319 ms
56,440 KB
testcase_23 AC 53 ms
37,352 KB
testcase_24 AC 51 ms
36,748 KB
testcase_25 AC 53 ms
37,084 KB
testcase_26 AC 53 ms
37,332 KB
testcase_27 AC 51 ms
37,048 KB
testcase_28 AC 271 ms
51,896 KB
testcase_29 AC 296 ms
51,572 KB
testcase_30 AC 281 ms
50,976 KB
testcase_31 AC 275 ms
50,752 KB
testcase_32 AC 296 ms
51,232 KB
testcase_33 AC 320 ms
56,136 KB
testcase_34 AC 313 ms
56,492 KB
testcase_35 AC 323 ms
56,092 KB
testcase_36 AC 317 ms
55,772 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;


public class Main_yukicoder184 {

    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        Printer pr = new Printer(System.out);

        int n = sc.nextInt();

        long[] a = new long[n];
        for (int i = 0; i < n; i++) {
        	a[i] = sc.nextLong();
        }

        int ret = 0;
        int p = 0;
        for (int i = 0; i <= 60; i++) {
        	long mask = 0x1L << i;

        	boolean flag = false;
        	for (int j = p; j < n; j++) {
        		if (!flag && (a[j] & mask) != 0) {
        			flag = true;
        			long tmp = a[j];
        			a[j] = a[p];
        			a[p] = tmp;
        			ret++;
        		} else if (flag && (a[j] & mask) != 0) {
        			a[j] ^= a[p];
        		}
        	}
        	if (flag) {
        		p++;
        	}
        }

        pr.println(0x1L << ret);

        pr.close();
        sc.close();
    }

	@SuppressWarnings("unused")
	private static class Scanner {
		BufferedReader br;
		Iterator<String> it;

		Scanner (InputStream in) {
			br = new BufferedReader(new InputStreamReader(in));
		}

		String next() throws RuntimeException  {
			try {
				if (it == null || !it.hasNext()) {
					it = Arrays.asList(br.readLine().split(" ")).iterator();
				}
				return it.next();
			} catch (IOException e) {
				throw new IllegalStateException();
			}
		}

		int nextInt() throws RuntimeException {
			return Integer.parseInt(next());
		}

		long nextLong() throws RuntimeException {
			return Long.parseLong(next());
		}

		float nextFloat() throws RuntimeException {
			return Float.parseFloat(next());
		}

		double nextDouble() throws RuntimeException {
			return Double.parseDouble(next());
		}

		void close() {
			try {
				br.close();
			} catch (IOException e) {
//				throw new IllegalStateException();
			}
		}
	}

	private static class Printer extends PrintWriter {
		Printer(PrintStream out) {
			super(out);
		}
	}
}
0