結果

問題 No.183 たのしい排他的論理和(EASY)
ユーザー tentententen
提出日時 2020-10-07 16:49:10
言語 Java
(openjdk 23)
結果
AC  
実行時間 810 ms / 5,000 ms
コード長 677 bytes
コンパイル時間 3,908 ms
コンパイル使用メモリ 74,448 KB
実行使用メモリ 47,572 KB
最終ジャッジ日時 2024-07-20 03:27:22
合計ジャッジ時間 11,143 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 173 ms
41,524 KB
testcase_01 AC 156 ms
41,596 KB
testcase_02 AC 167 ms
41,436 KB
testcase_03 AC 162 ms
41,580 KB
testcase_04 AC 166 ms
41,496 KB
testcase_05 AC 180 ms
41,108 KB
testcase_06 AC 176 ms
41,436 KB
testcase_07 AC 810 ms
47,428 KB
testcase_08 AC 733 ms
47,392 KB
testcase_09 AC 592 ms
46,368 KB
testcase_10 AC 663 ms
46,376 KB
testcase_11 AC 737 ms
47,536 KB
testcase_12 AC 173 ms
41,480 KB
testcase_13 AC 140 ms
41,180 KB
testcase_14 AC 615 ms
45,956 KB
testcase_15 AC 781 ms
47,340 KB
testcase_16 AC 157 ms
41,692 KB
testcase_17 AC 372 ms
43,032 KB
testcase_18 AC 743 ms
47,572 KB
testcase_19 AC 300 ms
42,756 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		boolean[] cur = new boolean[1 << 15];
		boolean[] next = new boolean[1 << 15];
		cur[0] = true;
		for (int i = 0; i < n; i++) {
		    int a = sc.nextInt();
		    for (int j = 0; j < (1 <<15); j++) {
		        if (cur[j]) {
		            next[j] = true;
		            next[j ^ a] = true;
		        }
		    }
		    boolean[] tmp = next;
		    next = cur;
		    cur = tmp;
		    Arrays.fill(next, false);
		}
		int count = 0;
		for (boolean b : cur) {
		    if (b) {
		        count++;
		    }
		}
		System.out.println(count);
	}
}
0