結果

問題 No.183 たのしい排他的論理和(EASY)
ユーザー fjafjafjafjafjafja
提出日時 2017-10-03 21:54:22
言語 Java
(openjdk 23)
結果
RE  
実行時間 -
コード長 518 bytes
コンパイル時間 4,466 ms
コンパイル使用メモリ 75,328 KB
実行使用メモリ 59,208 KB
最終ジャッジ日時 2024-11-16 06:05:47
合計ジャッジ時間 10,175 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
53,852 KB
testcase_01 AC 134 ms
54,132 KB
testcase_02 AC 141 ms
53,976 KB
testcase_03 AC 139 ms
53,916 KB
testcase_04 AC 139 ms
53,984 KB
testcase_05 AC 143 ms
54,128 KB
testcase_06 AC 138 ms
53,876 KB
testcase_07 RE -
testcase_08 AC 582 ms
59,208 KB
testcase_09 AC 472 ms
58,944 KB
testcase_10 AC 544 ms
59,172 KB
testcase_11 AC 586 ms
59,156 KB
testcase_12 RE -
testcase_13 AC 144 ms
53,872 KB
testcase_14 AC 225 ms
57,240 KB
testcase_15 AC 650 ms
58,848 KB
testcase_16 AC 137 ms
53,768 KB
testcase_17 AC 317 ms
57,132 KB
testcase_18 RE -
testcase_19 AC 256 ms
54,748 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+1];
		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