結果

問題 No.183 たのしい排他的論理和(EASY)
ユーザー fal_rndfal_rnd
提出日時 2016-12-28 00:56:15
言語 Java21
(openjdk 21)
結果
AC  
実行時間 641 ms / 5,000 ms
コード長 422 bytes
コンパイル時間 2,123 ms
コンパイル使用メモリ 74,644 KB
実行使用メモリ 59,336 KB
最終ジャッジ日時 2024-06-29 22:02:43
合計ジャッジ時間 10,186 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
54,060 KB
testcase_01 AC 136 ms
54,088 KB
testcase_02 AC 139 ms
54,188 KB
testcase_03 AC 140 ms
53,960 KB
testcase_04 AC 139 ms
54,424 KB
testcase_05 AC 140 ms
54,140 KB
testcase_06 AC 138 ms
54,568 KB
testcase_07 AC 637 ms
59,180 KB
testcase_08 AC 605 ms
59,244 KB
testcase_09 AC 516 ms
58,548 KB
testcase_10 AC 549 ms
58,504 KB
testcase_11 AC 616 ms
59,000 KB
testcase_12 AC 124 ms
53,252 KB
testcase_13 AC 130 ms
53,964 KB
testcase_14 AC 556 ms
57,784 KB
testcase_15 AC 641 ms
59,256 KB
testcase_16 AC 120 ms
53,308 KB
testcase_17 AC 306 ms
55,624 KB
testcase_18 AC 595 ms
59,336 KB
testcase_19 AC 237 ms
54,852 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package src;

import java.util.*;
class A{
	static Scanner s = new Scanner(System.in);
	static boolean[] dp=new boolean[16384*2];
	public static void main(String[] args) {
		dp[0]=true;
		{
			int b;
			for(int i=s.nextInt();i>0;--i) {
				dp[b=s.nextInt()]=true;
				for(int j=1;j<dp.length;j++) {
					if(dp[j])
						dp[b^j]=true;
				}
			}
		}
		int c=0;
		for(boolean b:dp)
			if(b)c++;
		System.out.println(c);
	}
}
0