結果

問題 No.183 たのしい排他的論理和(EASY)
ユーザー kenji_shioyakenji_shioya
提出日時 2016-06-23 22:06:04
言語 Java21
(openjdk 21)
結果
AC  
実行時間 652 ms / 5,000 ms
コード長 556 bytes
コンパイル時間 2,834 ms
コンパイル使用メモリ 74,844 KB
実行使用メモリ 47,680 KB
最終ジャッジ日時 2024-06-29 14:01:25
合計ジャッジ時間 9,645 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
41,500 KB
testcase_01 AC 119 ms
41,376 KB
testcase_02 AC 117 ms
41,276 KB
testcase_03 AC 117 ms
41,576 KB
testcase_04 AC 115 ms
41,336 KB
testcase_05 AC 128 ms
41,536 KB
testcase_06 AC 126 ms
41,152 KB
testcase_07 AC 652 ms
46,232 KB
testcase_08 AC 529 ms
47,616 KB
testcase_09 AC 467 ms
46,252 KB
testcase_10 AC 374 ms
47,156 KB
testcase_11 AC 577 ms
47,652 KB
testcase_12 AC 123 ms
41,708 KB
testcase_13 AC 115 ms
41,312 KB
testcase_14 AC 429 ms
45,972 KB
testcase_15 AC 594 ms
47,680 KB
testcase_16 AC 118 ms
41,276 KB
testcase_17 AC 220 ms
43,020 KB
testcase_18 AC 590 ms
47,644 KB
testcase_19 AC 204 ms
42,536 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Exercise114{
  public static void main (String[] args){

    Scanner sc = new Scanner(System.in);

    int n = sc.nextInt();
    boolean[] dp = new boolean[1 << 15];
    dp[0] = true;
    for(int i = 0; i < n; i++){
      int a = sc.nextInt();
      for(int j = 0; j < dp.length; j++){
        if(!dp[j]){
          continue;
        }
        dp[a ^ j] = true;
      }
    }
    int answer = 0;
    for(int i = 0; i < dp.length; i++){
      if(dp[i]){
        answer++;
      }
    }
    System.out.println(answer);
  }
}
0