結果
問題 | No.183 たのしい排他的論理和(EASY) |
ユーザー | htensai |
提出日時 | 2019-12-19 15:00:11 |
言語 | Java21 (openjdk 21) |
結果 |
TLE
|
実行時間 | - |
コード長 | 727 bytes |
コンパイル時間 | 2,487 ms |
コンパイル使用メモリ | 75,632 KB |
実行使用メモリ | 73,324 KB |
最終ジャッジ日時 | 2024-07-07 01:30:16 |
合計ジャッジ時間 | 8,685 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 45 ms
50,480 KB |
testcase_01 | AC | 44 ms
50,332 KB |
testcase_02 | AC | 71 ms
51,052 KB |
testcase_03 | AC | 49 ms
50,324 KB |
testcase_04 | AC | 44 ms
50,312 KB |
testcase_05 | AC | 82 ms
53,756 KB |
testcase_06 | AC | 46 ms
50,324 KB |
testcase_07 | TLE | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
ソースコード
import java.util.*; import java.io.*; public class Main { static HashSet<Integer>[] graph; static int n; public static void main(String[] args) throws Exception { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); int n = Integer.parseInt(br.readLine()); String[] line = br.readLine().split(" ", n); HashSet<Integer> set = new HashSet<>(); set.add(0); for (int i = 0; i < n; i++) { int a = Integer.parseInt(line[i]); HashSet<Integer> tmp = new HashSet<>(); for (int x : set) { tmp.add(x ^ a); } set.addAll(tmp); } System.out.print(set.size()); } }