結果

問題 No.183 たのしい排他的論理和(EASY)
ユーザー kenkooookenkoooo
提出日時 2015-04-16 23:45:39
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 943 bytes
コンパイル時間 3,643 ms
コンパイル使用メモリ 75,624 KB
実行使用メモリ 39,024 KB
最終ジャッジ日時 2024-07-04 15:13:48
合計ジャッジ時間 6,779 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
36,548 KB
testcase_01 AC 48 ms
36,548 KB
testcase_02 AC 85 ms
37,724 KB
testcase_03 AC 72 ms
37,508 KB
testcase_04 AC 50 ms
36,560 KB
testcase_05 AC 166 ms
37,684 KB
testcase_06 AC 54 ms
36,548 KB
testcase_07 RE -
testcase_08 AC 221 ms
38,460 KB
testcase_09 AC 219 ms
38,652 KB
testcase_10 AC 221 ms
38,560 KB
testcase_11 AC 228 ms
38,644 KB
testcase_12 RE -
testcase_13 AC 48 ms
36,512 KB
testcase_14 AC 61 ms
36,980 KB
testcase_15 AC 222 ms
38,444 KB
testcase_16 AC 71 ms
37,592 KB
testcase_17 AC 241 ms
38,532 KB
testcase_18 RE -
testcase_19 AC 212 ms
38,660 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.IOException;

public class Main {

	public static void main(String[] args) throws Exception {
		int N = nextInt();
		boolean[] a = new boolean[(1 << 14) + 1];
		a[0] = true;
		for (int i = 0; i < N; i++) {
			a[nextInt()] = true;
		}
		for (int i = 1; i < a.length; i++) {
			if (!a[i]) {
				continue;
			}
			for (int j = 1; j < i; j++) {
				if (a[j]) {
					a[i ^ j] = true;
				}
			}
		}

		int ans = 0;
		for (int i = 0; i < a.length; i++) {
			if (a[i]) {
				ans++;
			}
		}
		System.out.println(ans);
	}

	static int nextInt() {
		int c;
		try {
			c = System.in.read();
			while (c != '-' && (c < '0' || c > '9'))
				c = System.in.read();
			if (c == '-')
				return -nextInt();
			int res = 0;
			while (c >= '0' && c <= '9') {
				res = res * 10 + c - '0';
				c = System.in.read();
			}
			return res;
		} catch (IOException e) {
			// TODO Auto-generated catch block
			e.printStackTrace();
		}
		return -1;
	}
}
0