結果

問題 No.1456 Range Xor
ユーザー kokatsukokatsu
提出日時 2021-12-08 22:31:38
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 30 ms / 2,000 ms
コード長 389 bytes
コンパイル時間 1,933 ms
コンパイル使用メモリ 209,904 KB
実行使用メモリ 13,060 KB
最終ジャッジ日時 2024-06-22 13:35:10
合計ジャッジ時間 4,892 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 21 ms
8,528 KB
testcase_04 AC 22 ms
8,236 KB
testcase_05 AC 26 ms
11,520 KB
testcase_06 AC 20 ms
8,380 KB
testcase_07 AC 28 ms
11,228 KB
testcase_08 AC 25 ms
10,096 KB
testcase_09 AC 22 ms
7,364 KB
testcase_10 AC 23 ms
10,652 KB
testcase_11 AC 7 ms
6,940 KB
testcase_12 AC 4 ms
6,940 KB
testcase_13 AC 13 ms
8,980 KB
testcase_14 AC 10 ms
6,940 KB
testcase_15 AC 17 ms
7,400 KB
testcase_16 AC 20 ms
9,284 KB
testcase_17 AC 15 ms
8,728 KB
testcase_18 AC 7 ms
6,944 KB
testcase_19 AC 17 ms
11,136 KB
testcase_20 AC 19 ms
9,996 KB
testcase_21 AC 15 ms
6,940 KB
testcase_22 AC 14 ms
7,032 KB
testcase_23 AC 13 ms
8,240 KB
testcase_24 AC 6 ms
6,944 KB
testcase_25 AC 12 ms
9,360 KB
testcase_26 AC 17 ms
8,472 KB
testcase_27 AC 19 ms
8,804 KB
testcase_28 AC 9 ms
6,940 KB
testcase_29 AC 29 ms
13,060 KB
testcase_30 AC 23 ms
10,888 KB
testcase_31 AC 8 ms
6,940 KB
testcase_32 AC 7 ms
6,940 KB
testcase_33 AC 13 ms
8,856 KB
testcase_34 AC 23 ms
11,396 KB
testcase_35 AC 16 ms
8,424 KB
testcase_36 AC 24 ms
10,932 KB
testcase_37 AC 30 ms
12,080 KB
testcase_38 AC 6 ms
6,940 KB
testcase_39 AC 16 ms
6,944 KB
testcase_40 AC 24 ms
11,720 KB
testcase_41 AC 1 ms
6,940 KB
testcase_42 AC 5 ms
6,944 KB
testcase_43 AC 1 ms
6,944 KB
testcase_44 AC 1 ms
6,940 KB
testcase_45 AC 1 ms
6,944 KB
testcase_46 AC 1 ms
6,940 KB
testcase_47 AC 1 ms
6,940 KB
testcase_48 AC 1 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import std;

void main() {
    int N, K;
    readf("%d %d\n", N, K);

    auto A = readln.chomp.split.to!(int[]);

    auto B = A.cumulativeFold!"a ^ b".array;

    bool[int] list;
    list[0] = true;
    bool isOK;
    foreach (b; B) {
        if ((b ^ K) in list) {
            isOK = true;
            break;
        }

        list[b] = true;
    }

    writeln(isOK ? "Yes" : "No");
}
0