結果

問題 No.183 たのしい排他的論理和(EASY)
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-12-02 16:16:10
言語 Java21
(openjdk 21)
結果
AC  
実行時間 464 ms / 5,000 ms
コード長 628 bytes
コンパイル時間 3,042 ms
コンパイル使用メモリ 73,688 KB
実行使用メモリ 59,284 KB
最終ジャッジ日時 2024-06-29 20:54:48
合計ジャッジ時間 8,156 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
53,796 KB
testcase_01 AC 108 ms
53,060 KB
testcase_02 AC 118 ms
52,888 KB
testcase_03 AC 118 ms
53,964 KB
testcase_04 AC 119 ms
54,040 KB
testcase_05 AC 121 ms
53,788 KB
testcase_06 AC 120 ms
54,272 KB
testcase_07 AC 455 ms
59,120 KB
testcase_08 AC 438 ms
58,932 KB
testcase_09 AC 347 ms
58,352 KB
testcase_10 AC 393 ms
58,992 KB
testcase_11 AC 440 ms
59,044 KB
testcase_12 AC 109 ms
52,656 KB
testcase_13 AC 104 ms
52,736 KB
testcase_14 AC 398 ms
58,544 KB
testcase_15 AC 464 ms
59,284 KB
testcase_16 AC 120 ms
54,076 KB
testcase_17 AC 222 ms
54,812 KB
testcase_18 AC 413 ms
59,072 KB
testcase_19 AC 194 ms
54,088 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int N = sc.nextInt();
        boolean [] dp = new boolean [16384*2+1];
        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]==true){
                    dp[j^A]=true;
                }
            }
        }
        int count=0;
        for(int j=0; j<dp.length; j++){
            if(dp[j]==true){
                count++;
            }
        }
        System.out.println(count);
    }
}
0