結果

問題 No.183 たのしい排他的論理和(EASY)
ユーザー takeya_okinotakeya_okino
提出日時 2017-08-06 19:11:52
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 649 bytes
コンパイル時間 2,067 ms
コンパイル使用メモリ 76,864 KB
実行使用メモリ 461,464 KB
最終ジャッジ日時 2024-10-11 22:57:00
合計ジャッジ時間 24,068 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
53,816 KB
testcase_01 AC 131 ms
53,616 KB
testcase_02 AC 126 ms
53,108 KB
testcase_03 AC 126 ms
53,328 KB
testcase_04 AC 130 ms
54,076 KB
testcase_05 AC 139 ms
53,856 KB
testcase_06 AC 127 ms
52,936 KB
testcase_07 WA -
testcase_08 AC 2,357 ms
365,656 KB
testcase_09 AC 1,696 ms
254,932 KB
testcase_10 AC 1,946 ms
289,320 KB
testcase_11 AC 2,594 ms
461,464 KB
testcase_12 WA -
testcase_13 AC 127 ms
53,620 KB
testcase_14 AC 2,669 ms
457,740 KB
testcase_15 AC 2,684 ms
456,840 KB
testcase_16 AC 140 ms
54,020 KB
testcase_17 AC 707 ms
125,152 KB
testcase_18 WA -
testcase_19 AC 449 ms
87,692 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
  public static void main(String[] args) {
    Scanner sc = new Scanner(System.in);
    int N = sc.nextInt();
    int[] a = new int[N];
    for(int i = 0; i < N; i++) {
      a[i] = sc.nextInt();
    }
    int[][] dp = new int[N][(int)Math.pow(2, 14)];
    dp[0][0] = 1;
    dp[0][a[0]] = 1;
    for(int i = 1; i < N; i++) {
      for(int j = 0; j < (int)Math.pow(2, 14); j++) {
        if(dp[i - 1][j] == 1 || dp[i - 1][j ^ a[i]] == 1) dp[i][j] = 1;
      }
    }
    int ans = 0;
    for(int j = 0; j < (int)Math.pow(2, 14); j++) {
      if(dp[N - 1][j] > 0) ans++;
    }
    System.out.println(ans);
  }
}
0