結果
問題 | No.183 たのしい排他的論理和(EASY) |
ユーザー | takeya_okino |
提出日時 | 2017-08-06 19:11:16 |
言語 | Java21 (openjdk 21) |
結果 |
MLE
|
実行時間 | - |
コード長 | 649 bytes |
コンパイル時間 | 3,133 ms |
コンパイル使用メモリ | 76,996 KB |
実行使用メモリ | 738,284 KB |
最終ジャッジ日時 | 2024-10-11 22:56:15 |
合計ジャッジ時間 | 44,210 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 143 ms
53,944 KB |
testcase_01 | AC | 151 ms
53,964 KB |
testcase_02 | AC | 159 ms
55,752 KB |
testcase_03 | AC | 157 ms
55,940 KB |
testcase_04 | AC | 145 ms
41,780 KB |
testcase_05 | AC | 157 ms
43,152 KB |
testcase_06 | AC | 151 ms
42,428 KB |
testcase_07 | MLE | - |
testcase_08 | MLE | - |
testcase_09 | AC | 3,297 ms
497,312 KB |
testcase_10 | MLE | - |
testcase_11 | TLE | - |
testcase_12 | AC | 163 ms
55,936 KB |
testcase_13 | AC | 136 ms
53,804 KB |
testcase_14 | TLE | - |
testcase_15 | TLE | - |
testcase_16 | AC | 156 ms
56,148 KB |
testcase_17 | AC | 1,299 ms
216,772 KB |
testcase_18 | MLE | - |
testcase_19 | AC | 726 ms
127,112 KB |
ソースコード
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, 15)]; 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, 15); 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, 15); j++) { if(dp[N - 1][j] > 0) ans++; } System.out.println(ans); } }