結果

問題 No.183 たのしい排他的論理和(EASY)
ユーザー fjafjafjafjafjafja
提出日時 2017-10-03 21:56:58
言語 Java
(openjdk 23)
結果
AC  
実行時間 837 ms / 5,000 ms
コード長 518 bytes
コンパイル時間 3,779 ms
コンパイル使用メモリ 75,412 KB
実行使用メモリ 59,160 KB
最終ジャッジ日時 2024-06-30 03:14:55
合計ジャッジ時間 10,872 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
54,092 KB
testcase_01 AC 131 ms
53,844 KB
testcase_02 AC 135 ms
53,860 KB
testcase_03 AC 132 ms
54,256 KB
testcase_04 AC 129 ms
54,028 KB
testcase_05 AC 139 ms
54,016 KB
testcase_06 AC 128 ms
53,832 KB
testcase_07 AC 837 ms
57,804 KB
testcase_08 AC 569 ms
58,960 KB
testcase_09 AC 458 ms
58,812 KB
testcase_10 AC 527 ms
59,012 KB
testcase_11 AC 570 ms
58,996 KB
testcase_12 AC 138 ms
56,224 KB
testcase_13 AC 129 ms
53,980 KB
testcase_14 AC 220 ms
57,452 KB
testcase_15 AC 627 ms
58,720 KB
testcase_16 AC 129 ms
53,724 KB
testcase_17 AC 309 ms
56,924 KB
testcase_18 AC 717 ms
59,160 KB
testcase_19 AC 245 ms
54,644 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
import java.util.Scanner;

public class N183 {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int n=sc.nextInt();
		ArrayList<Integer> al=new ArrayList<Integer>();
		al.add(0);
		int[] h=new int[16384*2];
		h[0]=1;
		for(int i=0;i<n;i++){
			int a=sc.nextInt();
			int buf=al.size();
			for(int j=0;j<buf;j++){
				int newint=al.get(j)^a;
				if(h[newint]==0){
					al.add(newint);
					h[newint]++;
				}
			}
		}
		System.out.println(al.size());
	}
}
0