結果

問題 No.184 たのしい排他的論理和(HARD)
ユーザー hama_duhama_du
提出日時 2015-05-12 08:08:44
言語 Java21
(openjdk 21)
結果
AC  
実行時間 807 ms / 5,000 ms
コード長 824 bytes
コンパイル時間 3,399 ms
コンパイル使用メモリ 74,316 KB
実行使用メモリ 66,464 KB
最終ジャッジ日時 2024-07-04 11:45:08
合計ジャッジ時間 21,833 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
53,796 KB
testcase_01 AC 125 ms
53,820 KB
testcase_02 AC 138 ms
54,004 KB
testcase_03 AC 126 ms
53,820 KB
testcase_04 AC 129 ms
54,368 KB
testcase_05 AC 127 ms
53,820 KB
testcase_06 AC 124 ms
54,004 KB
testcase_07 AC 115 ms
52,880 KB
testcase_08 AC 677 ms
59,444 KB
testcase_09 AC 374 ms
58,844 KB
testcase_10 AC 575 ms
59,584 KB
testcase_11 AC 578 ms
59,008 KB
testcase_12 AC 708 ms
62,064 KB
testcase_13 AC 789 ms
63,788 KB
testcase_14 AC 618 ms
59,288 KB
testcase_15 AC 774 ms
64,580 KB
testcase_16 AC 734 ms
63,296 KB
testcase_17 AC 747 ms
64,076 KB
testcase_18 AC 138 ms
53,924 KB
testcase_19 AC 126 ms
53,964 KB
testcase_20 AC 516 ms
59,032 KB
testcase_21 AC 787 ms
66,464 KB
testcase_22 AC 780 ms
64,512 KB
testcase_23 AC 132 ms
54,016 KB
testcase_24 AC 128 ms
54,200 KB
testcase_25 AC 135 ms
53,980 KB
testcase_26 AC 129 ms
53,984 KB
testcase_27 AC 130 ms
54,564 KB
testcase_28 AC 641 ms
60,364 KB
testcase_29 AC 710 ms
63,192 KB
testcase_30 AC 669 ms
60,444 KB
testcase_31 AC 636 ms
59,480 KB
testcase_32 AC 751 ms
63,556 KB
testcase_33 AC 807 ms
64,100 KB
testcase_34 AC 796 ms
64,112 KB
testcase_35 AC 746 ms
64,260 KB
testcase_36 AC 750 ms
64,200 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;

import java.util.Scanner;

/**
 * Created by dhamada on 15/05/12.
 */
public class P184 {
    public static void main(String[] args) {
        Scanner in = new Scanner(System.in);

        int n = in.nextInt();
        long[] a = new long[n];
        for (int i = 0 ; i < n ; i++) {
            a[i] = in.nextLong();
        }

        int ok = 0;
        for (int i = 0 ; i < n ; i++) {
            if (a[i] == 0) {
                continue;
            }
            ok++;
            int found = 0;
            while ((a[i] & (1L<<found)) == 0) {
                found++;
            }
            for (int j = i+1 ; j < n ; j++) {
                if ((a[j] & (1L<<found)) != 0) {
                    a[j] ^= a[i];
                }
            }
        }
        System.out.println(1L<<ok);
    }
}
0