結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 138 ms
41,540 KB
testcase_01 AC 138 ms
41,704 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 136 ms
41,500 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 RE -
testcase_08 AC 484 ms
47,088 KB
testcase_09 AC 466 ms
45,748 KB
testcase_10 AC 463 ms
46,992 KB
testcase_11 AC 468 ms
46,988 KB
testcase_12 RE -
testcase_13 AC 138 ms
41,580 KB
testcase_14 AC 221 ms
45,508 KB
testcase_15 AC 471 ms
46,896 KB
testcase_16 WA -
testcase_17 AC 387 ms
43,008 KB
testcase_18 RE -
testcase_19 AC 361 ms
42,208 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=i+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