結果

問題 No.183 たのしい排他的論理和(EASY)
ユーザー fal_rndfal_rnd
提出日時 2016-12-28 00:45:05
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 434 bytes
コンパイル時間 2,202 ms
コンパイル使用メモリ 74,540 KB
実行使用メモリ 47,188 KB
最終ジャッジ日時 2024-05-08 21:26:37
合計ジャッジ時間 10,203 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
41,356 KB
testcase_01 AC 116 ms
41,212 KB
testcase_02 AC 197 ms
41,392 KB
testcase_03 AC 138 ms
41,540 KB
testcase_04 AC 116 ms
40,312 KB
testcase_05 AC 276 ms
40,164 KB
testcase_06 AC 129 ms
41,264 KB
testcase_07 RE -
testcase_08 AC 849 ms
47,024 KB
testcase_09 AC 840 ms
45,636 KB
testcase_10 AC 854 ms
46,856 KB
testcase_11 AC 578 ms
47,180 KB
testcase_12 RE -
testcase_13 AC 128 ms
41,380 KB
testcase_14 AC 206 ms
46,028 KB
testcase_15 AC 578 ms
47,188 KB
testcase_16 AC 124 ms
40,812 KB
testcase_17 AC 502 ms
43,028 KB
testcase_18 RE -
testcase_19 AC 476 ms
42,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package src;

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