結果

問題 No.183 たのしい排他的論理和(EASY)
ユーザー fjafjafjafjafjafja
提出日時 2017-10-03 21:33:25
言語 Java
(openjdk 23)
結果
MLE  
実行時間 -
コード長 630 bytes
コンパイル時間 4,223 ms
コンパイル使用メモリ 76,368 KB
実行使用メモリ 1,247,616 KB
最終ジャッジ日時 2024-11-16 06:05:20
合計ジャッジ時間 97,472 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 MLE -
testcase_01 MLE -
testcase_02 MLE -
testcase_03 MLE -
testcase_04 MLE -
testcase_05 MLE -
testcase_06 MLE -
testcase_07 MLE -
testcase_08 MLE -
testcase_09 MLE -
testcase_10 MLE -
testcase_11 MLE -
testcase_12 MLE -
testcase_13 AC 134 ms
60,808 KB
testcase_14 MLE -
testcase_15 MLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
import java.util.HashSet;
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);
		for(int i=0;i<n;i++){
			int buf=al.size();
			int a=sc.nextInt();
			for(int j=0;j<buf;j++){
				int newint=al.get(j)^a;
				for(int k=0;k<buf;k++){
					if(newint==al.get(k)){
						break;
					}
					al.add(newint);
				}
			}
		}
		HashSet<Integer> hs=new HashSet<Integer>();
		for(Integer all:al){
			hs.add(all);
		}
		System.out.println(hs.size());
	}
}
0